Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123046249
20140108.ddbpname.2.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jul 24, 12:30
Size
517 B
Mime Type
text/x-php
Expires
Sat, Jul 26, 12:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27621200
Attached To
rPH Phabricator
20140108.ddbpname.2.php
View Options
<?php
echo
"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
"Populating blueprint {$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
"Done.
\n
"
;
Event Timeline
Log In to Comment