Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100732356
PhabricatorAuditStatusConstants.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, Feb 2, 07:12
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Feb 4, 07:12 (2 d)
Engine
blob
Format
Raw Data
Handle
24023457
Attached To
rPH Phabricator
PhabricatorAuditStatusConstants.php
View Options
<?php
final
class
PhabricatorAuditStatusConstants
extends
Phobject
{
const
NONE
=
''
;
const
AUDIT_NOT_REQUIRED
=
'audit-not-required'
;
const
AUDIT_REQUIRED
=
'audit-required'
;
const
CONCERNED
=
'concerned'
;
const
ACCEPTED
=
'accepted'
;
const
AUDIT_REQUESTED
=
'requested'
;
const
RESIGNED
=
'resigned'
;
const
CLOSED
=
'closed'
;
const
CC
=
'cc'
;
public
static
function
getStatusNameMap
()
{
$map
=
array
(
self
::
NONE
=>
pht
(
'Not Applicable'
),
self
::
AUDIT_NOT_REQUIRED
=>
pht
(
'Audit Not Required'
),
self
::
AUDIT_REQUIRED
=>
pht
(
'Audit Required'
),
self
::
CONCERNED
=>
pht
(
'Concern Raised'
),
self
::
ACCEPTED
=>
pht
(
'Accepted'
),
self
::
AUDIT_REQUESTED
=>
pht
(
'Audit Requested'
),
self
::
RESIGNED
=>
pht
(
'Resigned'
),
self
::
CLOSED
=>
pht
(
'Closed'
),
self
::
CC
=>
pht
(
"Was CC'd"
),
);
return
$map
;
}
public
static
function
getActionRequiredStatusConstants
()
{
return
array
(
self
::
AUDIT_REQUIRED
,
self
::
AUDIT_REQUESTED
,
);
}
public
static
function
getStatusName
(
$code
)
{
return
idx
(
self
::
getStatusNameMap
(),
$code
,
pht
(
'Unknown'
));
}
public
static
function
getStatusColor
(
$code
)
{
switch
(
$code
)
{
case
self
::
CONCERNED
:
$color
=
'red'
;
break
;
case
self
::
AUDIT_REQUIRED
:
case
self
::
AUDIT_REQUESTED
:
$color
=
'orange'
;
break
;
case
self
::
ACCEPTED
:
$color
=
'green'
;
break
;
case
self
::
AUDIT_NOT_REQUIRED
:
$color
=
'blue'
;
break
;
case
self
::
RESIGNED
:
case
self
::
CLOSED
:
$color
=
'dark'
;
break
;
default
:
$color
=
'bluegrey'
;
break
;
}
return
$color
;
}
public
static
function
getStatusIcon
(
$code
)
{
switch
(
$code
)
{
case
self
::
AUDIT_NOT_REQUIRED
:
case
self
::
RESIGNED
:
$icon
=
PHUIStatusItemView
::
ICON_OPEN
;
break
;
case
self
::
AUDIT_REQUIRED
:
case
self
::
AUDIT_REQUESTED
:
$icon
=
PHUIStatusItemView
::
ICON_WARNING
;
break
;
case
self
::
CONCERNED
:
$icon
=
PHUIStatusItemView
::
ICON_REJECT
;
break
;
case
self
::
ACCEPTED
:
case
self
::
CLOSED
:
$icon
=
PHUIStatusItemView
::
ICON_ACCEPT
;
break
;
default
:
$icon
=
PHUIStatusItemView
::
ICON_QUESTION
;
break
;
}
return
$icon
;
}
public
static
function
getOpenStatusConstants
()
{
return
array
(
self
::
AUDIT_REQUIRED
,
self
::
AUDIT_REQUESTED
,
self
::
CONCERNED
,
);
}
public
static
function
isOpenStatus
(
$status
)
{
return
in_array
(
$status
,
self
::
getOpenStatusConstants
());
}
}
Event Timeline
Log In to Comment