Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92708932
20161210.dashboards.02.author.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
Sat, Nov 23, 00:13
Size
901 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 00:13 (2 d)
Engine
blob
Format
Raw Data
Handle
22492739
Attached To
rPH Phabricator
20161210.dashboards.02.author.php
View Options
<?php
// Set authorPHID on Dashboards
//
$table
=
new
PhabricatorDashboard
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
$txn_table
=
new
PhabricatorDashboardTransaction
();
$txn_conn
=
$table
->
establishConnection
(
'r'
);
echo
pht
(
"Building Dashboard authorPHIDs...
\n
"
);
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$dashboard
)
{
if
(
$dashboard
->
getAuthorPHID
())
{
continue
;
}
$author_row
=
queryfx_one
(
$txn_conn
,
'SELECT authorPHID FROM %T WHERE objectPHID = %s ORDER BY id ASC LIMIT 1'
,
$txn_table
->
getTableName
(),
$dashboard
->
getPHID
());
if
(!
$author_row
)
{
$author_phid
=
id
(
new
PhabricatorDashboardApplication
())->
getPHID
();
}
else
{
$author_phid
=
$author_row
[
'authorPHID'
];
}
queryfx
(
$conn_w
,
'UPDATE %T SET authorPHID = %s WHERE id = %d'
,
$table
->
getTableName
(),
$author_phid
,
$dashboard
->
getID
());
}
echo
pht
(
"Done
\n
"
);
Event Timeline
Log In to Comment