2015-07-08 21:26:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionPreCommitContentPusherHeraldField
|
|
|
|
extends DiffusionPreCommitContentHeraldField {
|
|
|
|
|
|
|
|
const FIELDCONST = 'diffusion.pre.content.pusher';
|
|
|
|
|
|
|
|
public function getHeraldFieldName() {
|
|
|
|
return pht('Pusher');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
|
|
return $this->getAdapter()->getHookEngine()->getViewer()->getPHID();
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:11:44 +02:00
|
|
|
protected function getHeraldFieldStandardType() {
|
2015-07-08 21:26:57 +02:00
|
|
|
return HeraldField::STANDARD_PHID;
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:12:44 +02:00
|
|
|
protected function getDatasource() {
|
|
|
|
return new PhabricatorPeopleDatasource();
|
2015-07-08 21:26:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|