Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105831348
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
Thu, Mar 20, 02:35
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Mar 22, 02:35 (2 d)
Engine
blob
Format
Raw Data
Handle
25056171
Attached To
rPH Phabricator
ManiphestTaskPriorityHeraldField.php
View Options
<?php
final
class
ManiphestTaskPriorityHeraldField
extends
ManiphestHeraldField
{
const
FIELDCONST
=
'taskpriority'
;
public
function
getHeraldFieldName
()
{
return
pht
(
'Task priority'
);
}
public
function
getHeraldFieldValue
(
$object
)
{
return
$object
->
getPriority
();
}
protected
function
getHeraldFieldStandardConditions
()
{
return
self
::
STANDARD_PHID
;
}
public
function
getHeraldFieldValueType
(
$condition
)
{
return
HeraldAdapter
::
VALUE_TASK_PRIORITY
;
}
public
function
renderConditionValue
(
PhabricatorUser
$viewer
,
$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