2015-07-06 22:17:01 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class ManiphestTaskPriorityHeraldField
|
2015-07-06 22:17:14 +02:00
|
|
|
extends ManiphestTaskHeraldField {
|
2015-07-06 22:17:01 +02:00
|
|
|
|
|
|
|
const FIELDCONST = 'taskpriority';
|
|
|
|
|
|
|
|
public function getHeraldFieldName() {
|
2015-07-06 22:17:14 +02:00
|
|
|
return pht('Priority');
|
2015-07-06 22:17:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
|
|
return $object->getPriority();
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:11:44 +02:00
|
|
|
protected function getHeraldFieldStandardType() {
|
2015-07-06 22:17:01 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|