Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1186291
PhabricatorProjectTriggerManiphestStatusRule.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
PhabricatorProjectTriggerManiphestStatusRule.php
View Options
<?php
final
class
PhabricatorProjectTriggerManiphestStatusRule
extends
PhabricatorProjectTriggerRule
{
const
TRIGGERTYPE
=
'task.status'
;
public
function
getDescription
()
{
$value
=
$this
->
getValue
();
return
pht
(
'Changes status to "%s".'
,
ManiphestTaskStatus
::
getTaskStatusName
(
$value
));
}
public
function
getSelectControlName
()
{
return
pht
(
'Change status to'
);
}
protected
function
assertValidRuleValue
(
$value
)
{
if
(!
is_string
(
$value
))
{
throw
new
Exception
(
pht
(
'Status rule value should be a string, but is not (value is "%s").'
,
phutil_describe_type
(
$value
)));
}
$map
=
ManiphestTaskStatus
::
getTaskStatusMap
();
if
(!
isset
(
$map
[
$value
]))
{
throw
new
Exception
(
pht
(
'Rule value ("%s") is not a valid task status.'
,
$value
));
}
}
protected
function
newDropTransactions
(
$object
,
$value
)
{
return
array
(
$this
->
newTransaction
()
->
setTransactionType
(
ManiphestTaskStatusTransaction
::
TRANSACTIONTYPE
)
->
setNewValue
(
$value
),
);
}
protected
function
newDropEffects
(
$value
)
{
$status_name
=
ManiphestTaskStatus
::
getTaskStatusName
(
$value
);
$status_icon
=
ManiphestTaskStatus
::
getStatusIcon
(
$value
);
$status_color
=
ManiphestTaskStatus
::
getStatusColor
(
$value
);
$content
=
pht
(
'Change status to %s.'
,
phutil_tag
(
'strong'
,
array
(),
$status_name
));
return
array
(
$this
->
newEffect
()
->
setIcon
(
$status_icon
)
->
setColor
(
$status_color
)
->
addCondition
(
'status'
,
'!='
,
$value
)
->
setContent
(
$content
),
);
}
protected
function
getDefaultValue
()
{
return
head_key
(
ManiphestTaskStatus
::
getTaskStatusMap
());
}
protected
function
getPHUIXControlType
()
{
return
'select'
;
}
protected
function
getPHUIXControlSpecification
()
{
$map
=
ManiphestTaskStatus
::
getTaskStatusMap
();
return
array
(
'options'
=>
$map
,
'order'
=>
array_keys
(
$map
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jul 2, 1:39 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
293512
Default Alt Text
PhabricatorProjectTriggerManiphestStatusRule.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment