Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93611004
20130716.archivememberlessprojects.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 30, 03:48
Size
1005 B
Mime Type
text/x-php
Expires
Mon, Dec 2, 03:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22673668
Attached To
rPH Phabricator
20130716.archivememberlessprojects.php
View Options
<?php
echo
pht
(
'Archiving projects with no members...'
).
"
\n
"
;
$table
=
new
PhabricatorProject
();
$table
->
openTransaction
();
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$project
)
{
$members
=
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$project
->
getPHID
(),
PhabricatorProjectProjectHasMemberEdgeType
::
EDGECONST
);
if
(
count
(
$members
))
{
echo
pht
(
'Project "%s" has %d members; skipping.'
,
$project
->
getName
(),
count
(
$members
)),
"
\n
"
;
continue
;
}
if
(
$project
->
getStatus
()
==
PhabricatorProjectStatus
::
STATUS_ARCHIVED
)
{
echo
pht
(
'Project "%s" already archived; skipping.'
,
$project
->
getName
()),
"
\n
"
;
continue
;
}
echo
pht
(
'Archiving project "%s"...'
,
$project
->
getName
()).
"
\n
"
;
queryfx
(
$table
->
establishConnection
(
'w'
),
'UPDATE %T SET status = %s WHERE id = %d'
,
$table
->
getTableName
(),
PhabricatorProjectStatus
::
STATUS_ARCHIVED
,
$project
->
getID
());
}
$table
->
saveTransaction
();
echo
"
\n
"
.
pht
(
'Done.'
).
"
\n
"
;
Event Timeline
Log In to Comment