2015-07-06 22:17:14 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class ManiphestTaskAssigneeHeraldField
|
|
|
|
extends ManiphestTaskHeraldField {
|
|
|
|
|
|
|
|
const FIELDCONST = 'maniphest.task.assignee';
|
|
|
|
|
|
|
|
public function getHeraldFieldName() {
|
|
|
|
return pht('Assignee');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
|
|
return $object->getOwnerPHID();
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:11:44 +02:00
|
|
|
protected function getHeraldFieldStandardType() {
|
2015-07-06 22:17:14 +02:00
|
|
|
return self::STANDARD_PHID_NULLABLE;
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:12:44 +02:00
|
|
|
protected function getDatasource() {
|
|
|
|
return new PhabricatorPeopleDatasource();
|
2015-07-06 22:17:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|