Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91125670
ManiphestTaskPriorityHeraldField.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, 04:23
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Nov 10, 04:23 (2 d)
Engine
blob
Format
Raw Data
Handle
22201473
Attached To
rPH Phabricator
ManiphestTaskPriorityHeraldField.php
View Options
<?php
final
class
ManiphestTaskPriorityHeraldField
extends
ManiphestTaskHeraldField
{
const
FIELDCONST
=
'taskpriority'
;
public
function
getHeraldFieldName
()
{
return
pht
(
'Priority'
);
}
public
function
getHeraldFieldValue
(
$object
)
{
return
$object
->
getPriority
();
}
protected
function
getHeraldFieldStandardType
()
{
return
self
::
STANDARD_PHID
;
}
public
function
getHeraldFieldValueType
(
$condition
)
{
return
HeraldAdapter
::
VALUE_TASK_PRIORITY
;
}
public
function
renderConditionValue
(
PhabricatorUser
$viewer
,
$condition
,
$value
)
{
$priority_map
=
ManiphestTaskPriority
::
getTaskPriorityMap
();
$value
=
(
array
)
$value
;
foreach
(
$value
as
$index
=>
$val
)
{
$name
=
idx
(
$priority_map
,
$val
);
if
(
$name
!==
null
)
{
$value
[
$index
]
=
$name
;
}
}
return
implode
(
', '
,
$value
);
}
public
function
getEditorValue
(
PhabricatorUser
$viewer
,
$value
)
{
$priority_map
=
ManiphestTaskPriority
::
getTaskPriorityMap
();
$value_map
=
array
();
foreach
(
$value
as
$priority
)
{
$value_map
[
$priority
]
=
idx
(
$priority_map
,
$priority
,
$priority
);
}
return
$value_map
;
}
}
Event Timeline
Log In to Comment