Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93198592
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
Tue, Nov 26, 23:18
Size
543 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 23:18 (2 d)
Engine
blob
Format
Raw Data
Handle
22585136
Attached To
rPH Phabricator
20140108.ddbpname.2.php
View Options
<?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
"
;
Event Timeline
Log In to Comment