Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F451763
ManiphestTaskStatus.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
ManiphestTaskStatus.php
View Options
<?php
/**
* @group maniphest
*/
final
class
ManiphestTaskStatus
extends
ManiphestConstants
{
const
STATUS_OPEN
=
0
;
const
STATUS_CLOSED_RESOLVED
=
1
;
const
STATUS_CLOSED_WONTFIX
=
2
;
const
STATUS_CLOSED_INVALID
=
3
;
const
STATUS_CLOSED_DUPLICATE
=
4
;
const
STATUS_CLOSED_SPITE
=
5
;
public
static
function
getTaskStatusMap
()
{
return
array
(
self
::
STATUS_OPEN
=>
'Open'
,
self
::
STATUS_CLOSED_RESOLVED
=>
'Resolved'
,
self
::
STATUS_CLOSED_WONTFIX
=>
'Wontfix'
,
self
::
STATUS_CLOSED_INVALID
=>
'Invalid'
,
self
::
STATUS_CLOSED_DUPLICATE
=>
'Duplicate'
,
self
::
STATUS_CLOSED_SPITE
=>
'Spite'
,
);
}
public
static
function
getTaskStatusFullName
(
$status
)
{
$map
=
array
(
self
::
STATUS_OPEN
=>
'Open'
,
self
::
STATUS_CLOSED_RESOLVED
=>
'Closed, Resolved'
,
self
::
STATUS_CLOSED_WONTFIX
=>
'Closed, Wontfix'
,
self
::
STATUS_CLOSED_INVALID
=>
'Closed, Invalid'
,
self
::
STATUS_CLOSED_DUPLICATE
=>
'Closed, Duplicate'
,
self
::
STATUS_CLOSED_SPITE
=>
'Closed out of Spite'
,
);
return
idx
(
$map
,
$status
,
'???'
);
}
public
static
function
getTaskStatusTagColor
(
$status
)
{
$default
=
PhabricatorTagView
::
COLOR_GREY
;
$map
=
array
(
self
::
STATUS_OPEN
=>
PhabricatorTagView
::
COLOR_ORANGE
,
self
::
STATUS_CLOSED_RESOLVED
=>
PhabricatorTagView
::
COLOR_BLUE
,
self
::
STATUS_CLOSED_WONTFIX
=>
PhabricatorTagView
::
COLOR_BLACK
,
self
::
STATUS_CLOSED_INVALID
=>
PhabricatorTagView
::
COLOR_BLACK
,
self
::
STATUS_CLOSED_DUPLICATE
=>
PhabricatorTagView
::
COLOR_BLACK
,
self
::
STATUS_CLOSED_SPITE
=>
PhabricatorTagView
::
COLOR_INDIGO
,
);
return
idx
(
$map
,
$status
,
$default
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 10:45 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68379
Default Alt Text
ManiphestTaskStatus.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment