Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96498825
ManiphestPriorityEmailCommand.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
Fri, Dec 27, 07:52
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Dec 29, 07:52 (2 d)
Engine
blob
Format
Raw Data
Handle
23194044
Attached To
rPH Phabricator
ManiphestPriorityEmailCommand.php
View Options
<?php
final
class
ManiphestPriorityEmailCommand
extends
ManiphestEmailCommand
{
public
function
getCommand
()
{
return
'priority'
;
}
public
function
getCommandSyntax
()
{
return
'**!priority** //priority//'
;
}
public
function
getCommandSummary
()
{
return
pht
(
'Change the priority of a task.'
);
}
public
function
getCommandDescription
()
{
$names
=
ManiphestTaskPriority
::
getTaskPriorityMap
();
$keywords
=
ManiphestTaskPriority
::
getTaskPriorityKeywordsMap
();
$table
=
array
();
$table
[]
=
'| '
.
pht
(
'Priority'
).
' | '
.
pht
(
'Keywords'
);
$table
[]
=
'|---|---|'
;
foreach
(
$keywords
as
$priority
=>
$words
)
{
if
(
ManiphestTaskPriority
::
isDisabledPriority
(
$priority
))
{
continue
;
}
$words
=
implode
(
', '
,
$words
);
$table
[]
=
'| '
.
$names
[
$priority
].
' | '
.
$words
;
}
$table
=
implode
(
"
\n
"
,
$table
);
return
pht
(
"To change the priority of a task, specify the desired priority, like "
.
"`%s`. This table shows the configured names for priority levels."
.
"
\n\n
%s
\n\n
"
.
"If you specify an invalid priority, the command is ignored. This "
.
"command has no effect if you do not specify a priority."
,
'!priority high'
,
$table
);
}
public
function
buildTransactions
(
PhabricatorUser
$viewer
,
PhabricatorApplicationTransactionInterface
$object
,
PhabricatorMetaMTAReceivedMail
$mail
,
$command
,
array
$argv
)
{
$xactions
=
array
();
$target
=
phutil_utf8_strtolower
(
head
(
$argv
));
$priority
=
null
;
$keywords
=
ManiphestTaskPriority
::
getTaskPriorityKeywordsMap
();
foreach
(
$keywords
as
$key
=>
$words
)
{
foreach
(
$words
as
$word
)
{
if
(
$word
==
$target
)
{
$priority
=
$key
;
break
;
}
}
}
if
(
$priority
===
null
)
{
return
array
();
}
if
(
ManiphestTaskPriority
::
isDisabledPriority
(
$priority
))
{
return
array
();
}
$xactions
[]
=
$object
->
getApplicationTransactionTemplate
()
->
setTransactionType
(
ManiphestTransaction
::
TYPE_PRIORITY
)
->
setNewValue
(
$priority
);
return
$xactions
;
}
}
Event Timeline
Log In to Comment