Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93120047
ManiphestTaskStatusHeraldField.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
Tue, Nov 26, 08:44
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 08:44 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22576449
Attached To
rPH Phabricator
ManiphestTaskStatusHeraldField.php
View Options
<?php
final
class
ManiphestTaskStatusHeraldField
extends
ManiphestTaskHeraldField
{
const
FIELDCONST
=
'taskstatus'
;
public
function
getHeraldFieldName
()
{
return
pht
(
'Status'
);
}
public
function
getHeraldFieldValue
(
$object
)
{
return
$object
->
getStatus
();
}
protected
function
getHeraldFieldStandardType
()
{
return
self
::
STANDARD_PHID
;
}
public
function
getHeraldFieldValueType
(
$condition
)
{
return
HeraldAdapter
::
VALUE_TASK_STATUS
;
}
public
function
renderConditionValue
(
PhabricatorUser
$viewer
,
$condition
,
$value
)
{
$status_map
=
ManiphestTaskStatus
::
getTaskStatusMap
();
$value
=
(
array
)
$value
;
foreach
(
$value
as
$index
=>
$val
)
{
$name
=
idx
(
$status_map
,
$val
);
if
(
$name
!==
null
)
{
$value
[
$index
]
=
$name
;
}
}
return
implode
(
', '
,
$value
);
}
public
function
getEditorValue
(
PhabricatorUser
$viewer
,
$value
)
{
$status_map
=
ManiphestTaskStatus
::
getTaskStatusMap
();
$value_map
=
array
();
foreach
(
$value
as
$status
)
{
$value_map
[
$status
]
=
idx
(
$status_map
,
$status
,
$status
);
}
return
$value_map
;
}
}
Event Timeline
Log In to Comment