2015-07-08 21:26:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionPreCommitContentAuthorHeraldField
|
|
|
|
extends DiffusionPreCommitContentHeraldField {
|
|
|
|
|
|
|
|
const FIELDCONST = 'diffusion.pre.commit.author';
|
|
|
|
|
|
|
|
public function getHeraldFieldName() {
|
|
|
|
return pht('Author');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
|
|
return $this->getAdapter()->getAuthorPHID();
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:11:44 +02:00
|
|
|
protected function getHeraldFieldStandardType() {
|
2015-07-08 21:26:57 +02:00
|
|
|
return self::STANDARD_PHID_NULLABLE;
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:12:44 +02:00
|
|
|
protected function getDatasource() {
|
|
|
|
return new PhabricatorPeopleDatasource();
|
2015-07-08 21:26:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|