$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; } }