Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117753873
ManiphestTaskPriority.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, Jun 15, 18:43
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jun 17, 18:43 (2 d)
Engine
blob
Format
Raw Data
Handle
26785346
Attached To
rPH Phabricator
ManiphestTaskPriority.php
View Options
<?php
/**
* @group maniphest
*/
final
class
ManiphestTaskPriority
extends
ManiphestConstants
{
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
;
/**
* Get the priorities and their full descriptions.
*
* @return map Priorities to descriptions.
*/
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'
,
);
}
/**
* Get the priorities and their related short (one-word) descriptions.
*
* @return map Priorities to brief descriptions.
*/
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'
,
);
}
/**
* 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'
);
}
/**
* 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.
*/
public
static
function
getTaskPriorityName
(
$priority
)
{
return
idx
(
self
::
getTaskPriorityMap
(),
$priority
,
'???'
);
}
}
Event Timeline
Log In to Comment