Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F971300
20130529.macroauthormig.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
820 B
Referenced Files
None
Subscribers
None
20130529.macroauthormig.php
View Options
<?php
echo
pht
(
'Migrating macro authors...'
).
"
\n
"
;
foreach
(
new
LiskMigrationIterator
(
new
PhabricatorFileImageMacro
())
as
$macro
)
{
echo
pht
(
'Macro #%d'
,
$macro
->
getID
()).
"
\n
"
;
if
(
$macro
->
getAuthorPHID
())
{
// Already have an author; skip it.
continue
;
}
if
(!
$macro
->
getFilePHID
())
{
// No valid file; skip it.
continue
;
}
$file
=
id
(
new
PhabricatorFile
())->
loadOneWhere
(
'phid = %s'
,
$macro
->
getFilePHID
());
if
(!
$file
)
{
// Couldn't load the file; skip it.
continue
;
}
if
(!
$file
->
getAuthorPHID
())
{
// File has no author; skip it.
continue
;
}
queryfx
(
$macro
->
establishConnection
(
'w'
),
'UPDATE %T SET authorPHID = %s WHERE id = %d'
,
$macro
->
getTableName
(),
$file
->
getAuthorPHID
(),
$macro
->
getID
());
}
echo
pht
(
'Done.'
).
"
\n
"
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 5:43 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
223985
Default Alt Text
20130529.macroauthormig.php (820 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment