protected function loadPage()
 {
     $table = new DrydockBlueprint();
     $conn_r = $table->establishConnection('r');
     $data = queryfx_all($conn_r, 'SELECT blueprint.* FROM %T blueprint %Q %Q %Q', $table->getTableName(), $this->buildWhereClause($conn_r), $this->buildOrderClause($conn_r), $this->buildLimitClause($conn_r));
     $blueprints = $table->loadAllFromArray($data);
     $implementations = DrydockBlueprintImplementation::getAllBlueprintImplementations();
     foreach ($blueprints as $blueprint) {
         if (array_key_exists($blueprint->getClassName(), $implementations)) {
             $blueprint->attachImplementation($implementations[$blueprint->getClassName()]);
         }
     }
     return $blueprints;
 }
예제 #2
0
<?php

echo pht('Adding names to Drydock blueprints.') . "\n";
$table = new DrydockBlueprint();
$conn_w = $table->establishConnection('w');
$iterator = new LiskMigrationIterator($table);
foreach ($iterator as $blueprint) {
    $id = $blueprint->getID();
    echo pht('Populating blueprint %d...', $id) . "\n";
    if (!strlen($blueprint->getBlueprintName())) {
        queryfx($conn_w, 'UPDATE %T SET blueprintName = %s WHERE id = %d', $table->getTableName(), pht('Blueprint %s', $id), $id);
    }
}
echo pht('Done.') . "\n";