Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F468196
PhabricatorConfigManagementDoneWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorConfigManagementDoneWorkflow.php
View Options
<?php
final
class
PhabricatorConfigManagementDoneWorkflow
extends
PhabricatorConfigManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'done'
)
->
setExamples
(
'**done** __activity__'
)
->
setSynopsis
(
pht
(
'Mark a manual upgrade activity as complete.'
))
->
setArguments
(
array
(
array
(
'name'
=>
'activities'
,
'wildcard'
=>
true
,
),
));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$activities
=
$args
->
getArg
(
'activities'
);
if
(!
$activities
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify an activity to mark as completed.'
));
}
foreach
(
$activities
as
$type
)
{
$activity
=
id
(
new
PhabricatorConfigManualActivity
())->
loadOneWhere
(
'activityType = %s'
,
$type
);
if
(!
$activity
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Activity "%s" is not currently marked as required, so there '
.
'is no need to complete it.'
,
$type
));
}
else
{
$activity
->
delete
();
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Marked activity "%s" as completed.'
,
$type
));
}
}
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Done.'
));
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 6, 4:53 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
80422
Default Alt Text
PhabricatorConfigManagementDoneWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment