mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
|
<?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;
|
||
|
}
|
||
|
|
||
|
}
|