Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110319169
PonderQuestionStatus.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
Fri, Apr 25, 18:42
Size
732 B
Mime Type
text/x-php
Expires
Sun, Apr 27, 18:42 (2 d)
Engine
blob
Format
Raw Data
Handle
25802510
Attached To
rPH Phabricator
PonderQuestionStatus.php
View Options
<?php
/**
* @group ponder
*/
final
class
PonderQuestionStatus
extends
PonderConstants
{
const
STATUS_OPEN
=
0
;
const
STATUS_CLOSED
=
1
;
public
static
function
getQuestionStatusMap
()
{
return
array
(
self
::
STATUS_OPEN
=>
pht
(
'Open'
),
self
::
STATUS_CLOSED
=>
pht
(
'Closed'
),
);
}
public
static
function
getQuestionStatusFullName
(
$status
)
{
$map
=
array
(
self
::
STATUS_OPEN
=>
pht
(
'Open'
),
self
::
STATUS_CLOSED
=>
pht
(
'Closed by author'
),
);
return
idx
(
$map
,
$status
,
'???'
);
}
public
static
function
getQuestionStatusTagColor
(
$status
)
{
$map
=
array
(
self
::
STATUS_CLOSED
=>
PHUITagView
::
COLOR_BLACK
,
);
return
idx
(
$map
,
$status
);
}
}
Event Timeline
Log In to Comment