Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91378793
ManiphestTaskPriorityHeraldAction.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
Sun, Nov 10, 12:52
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Nov 12, 12:52 (2 d)
Engine
blob
Format
Raw Data
Handle
22250665
Attached To
rPH Phabricator
ManiphestTaskPriorityHeraldAction.php
View Options
<?php
final
class
ManiphestTaskPriorityHeraldAction
extends
HeraldAction
{
const
ACTIONCONST
=
'maniphest.priority'
;
const
DO_PRIORITY
=
'do.priority'
;
public
function
supportsObject
(
$object
)
{
return
(
$object
instanceof
ManiphestTask
);
}
public
function
getActionGroupKey
()
{
return
HeraldApplicationActionGroup
::
ACTIONGROUPKEY
;
}
public
function
getHeraldActionName
()
{
return
pht
(
'Change priority to'
);
}
public
function
supportsRuleType
(
$rule_type
)
{
return
(
$rule_type
!=
HeraldRuleTypeConfig
::
RULE_TYPE_PERSONAL
);
}
public
function
applyEffect
(
$object
,
HeraldEffect
$effect
)
{
$priority
=
head
(
$effect
->
getTarget
());
if
(!
$priority
)
{
$this
->
logEffect
(
self
::
DO_STANDARD_EMPTY
);
return
;
}
$adapter
=
$this
->
getAdapter
();
$object
=
$adapter
->
getObject
();
$current
=
$object
->
getPriority
();
if
(
$current
==
$priority
)
{
$this
->
logEffect
(
self
::
DO_STANDARD_NO_EFFECT
,
$priority
);
return
;
}
$xaction
=
$adapter
->
newTransaction
()
->
setTransactionType
(
ManiphestTransaction
::
TYPE_PRIORITY
)
->
setNewValue
(
$priority
);
$adapter
->
queueTransaction
(
$xaction
);
$this
->
logEffect
(
self
::
DO_PRIORITY
,
$priority
);
}
public
function
getHeraldActionStandardType
()
{
return
self
::
STANDARD_PHID_LIST
;
}
public
function
renderActionDescription
(
$value
)
{
$priority
=
head
(
$value
);
$name
=
ManiphestTaskPriority
::
getTaskPriorityName
(
$priority
);
return
pht
(
'Change priority to: %s.'
,
$name
);
}
protected
function
getDatasource
()
{
return
new
ManiphestTaskPriorityDatasource
();
}
protected
function
getDatasourceValueMap
()
{
return
ManiphestTaskPriority
::
getTaskPriorityMap
();
}
protected
function
getActionEffectMap
()
{
return
array
(
self
::
DO_PRIORITY
=>
array
(
'icon'
=>
'fa-pencil'
,
'color'
=>
'green'
,
'name'
=>
pht
(
'Changed Task Priority'
),
),
);
}
protected
function
renderActionEffectDescription
(
$type
,
$data
)
{
switch
(
$type
)
{
case
self
::
DO_PRIORITY
:
return
pht
(
'Changed task priority to "%s".'
,
ManiphestTaskPriority
::
getTaskPriorityName
(
$data
));
}
}
}
Event Timeline
Log In to Comment