2011-02-08 19:53:59 +01:00
|
|
|
<?php
|
|
|
|
|
2011-07-04 22:04:22 +02:00
|
|
|
/**
|
|
|
|
* @group maniphest
|
|
|
|
*/
|
|
|
|
final class ManiphestTaskPriority extends ManiphestConstants {
|
2011-02-08 19:53:59 +01:00
|
|
|
|
|
|
|
const PRIORITY_UNBREAK_NOW = 100;
|
|
|
|
const PRIORITY_TRIAGE = 90;
|
|
|
|
const PRIORITY_HIGH = 80;
|
|
|
|
const PRIORITY_NORMAL = 50;
|
|
|
|
const PRIORITY_LOW = 25;
|
|
|
|
const PRIORITY_WISH = 0;
|
|
|
|
|
2012-08-01 07:52:46 +02:00
|
|
|
/**
|
|
|
|
* Get the priorities and their full descriptions.
|
|
|
|
*
|
|
|
|
* @return map Priorities to descriptions.
|
|
|
|
*/
|
2011-02-08 19:53:59 +01:00
|
|
|
public static function getTaskPriorityMap() {
|
|
|
|
return array(
|
|
|
|
self::PRIORITY_UNBREAK_NOW => 'Unbreak Now!',
|
|
|
|
self::PRIORITY_TRIAGE => 'Needs Triage',
|
|
|
|
self::PRIORITY_HIGH => 'High',
|
|
|
|
self::PRIORITY_NORMAL => 'Normal',
|
|
|
|
self::PRIORITY_LOW => 'Low',
|
|
|
|
self::PRIORITY_WISH => 'Wishlist',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-08-01 07:52:46 +02:00
|
|
|
/**
|
|
|
|
* Get the priorities and their related short (one-word) descriptions.
|
|
|
|
*
|
|
|
|
* @return map Priorities to brief descriptions.
|
|
|
|
*/
|
2012-03-20 03:46:57 +01:00
|
|
|
public static function getTaskBriefPriorityMap() {
|
|
|
|
return array(
|
|
|
|
self::PRIORITY_UNBREAK_NOW => 'Unbreak!',
|
|
|
|
self::PRIORITY_TRIAGE => 'Triage',
|
|
|
|
self::PRIORITY_HIGH => 'High',
|
|
|
|
self::PRIORITY_NORMAL => 'Normal',
|
|
|
|
self::PRIORITY_LOW => 'Low',
|
|
|
|
self::PRIORITY_WISH => 'Wish',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-08-01 07:52:46 +02:00
|
|
|
/**
|
|
|
|
* Get the priorities and some bits for bitwise fun.
|
|
|
|
*
|
|
|
|
* @return map Priorities to bits.
|
|
|
|
*/
|
2012-03-01 23:19:11 +01:00
|
|
|
public static function getLoadMap() {
|
|
|
|
return array(
|
|
|
|
self::PRIORITY_UNBREAK_NOW => 16,
|
|
|
|
self::PRIORITY_TRIAGE => 8,
|
|
|
|
self::PRIORITY_HIGH => 4,
|
|
|
|
self::PRIORITY_NORMAL => 2,
|
|
|
|
self::PRIORITY_LOW => 1,
|
|
|
|
self::PRIORITY_WISH => 0,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-08-01 07:52:46 +02:00
|
|
|
/**
|
|
|
|
* Get the lowest defined priority.
|
|
|
|
*
|
|
|
|
* @return int The value of the lowest priority constant.
|
|
|
|
*/
|
|
|
|
public static function getLowestPriority() {
|
|
|
|
return self::PRIORITY_WISH;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the highest defined priority.
|
|
|
|
*
|
|
|
|
* @return int The value of the highest priority constant.
|
|
|
|
*/
|
|
|
|
public static function getHighestPriority() {
|
|
|
|
return self::PRIORITY_UNBREAK_NOW;
|
|
|
|
}
|
2012-10-04 23:19:37 +02:00
|
|
|
/**
|
|
|
|
* Return the default priority for this instance of Phabricator.
|
|
|
|
*
|
|
|
|
* @return int The value of the default priority constant.
|
|
|
|
*/
|
|
|
|
public static function getDefaultPriority() {
|
|
|
|
return PhabricatorEnv::getEnvConfig(
|
|
|
|
'maniphest.default-priority',
|
|
|
|
self::PRIORITY_TRIAGE
|
|
|
|
);
|
|
|
|
}
|
2012-08-01 07:52:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the full name of the priority level provided.
|
|
|
|
*
|
|
|
|
* @param int A priority level.
|
|
|
|
* @return string The priority name if the level is a valid one,
|
|
|
|
* or `???` if it is not.
|
|
|
|
*/
|
2011-02-08 19:53:59 +01:00
|
|
|
public static function getTaskPriorityName($priority) {
|
|
|
|
return idx(self::getTaskPriorityMap(), $priority, '???');
|
|
|
|
}
|
2012-10-04 23:19:37 +02:00
|
|
|
|
2011-02-08 19:53:59 +01:00
|
|
|
}
|