Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91158822
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
Fri, Nov 8, 12:04
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 10, 12:04 (2 d)
Engine
blob
Format
Raw Data
Handle
22208243
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