2015-07-06 13:17:14 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class ManiphestTaskAuthorHeraldField
|
|
|
|
extends ManiphestTaskHeraldField {
|
|
|
|
|
|
|
|
const FIELDCONST = 'maniphest.task.author';
|
|
|
|
|
|
|
|
public function getHeraldFieldName() {
|
|
|
|
return pht('Author');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
|
|
return $object->getAuthorPHID();
|
|
|
|
}
|
|
|
|
|
2015-07-16 14:11:44 -07:00
|
|
|
protected function getHeraldFieldStandardType() {
|
2015-07-06 13:17:14 -07:00
|
|
|
return self::STANDARD_PHID;
|
|
|
|
}
|
|
|
|
|
2015-07-16 14:12:44 -07:00
|
|
|
protected function getDatasource() {
|
|
|
|
return new PhabricatorPeopleDatasource();
|
2015-07-06 13:17:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|