2015-07-08 21:26:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DiffusionPreCommitRefPusherProjectsHeraldField
|
|
|
|
extends DiffusionPreCommitRefHeraldField {
|
|
|
|
|
|
|
|
const FIELDCONST = 'diffusion.pre.ref.pusher.projects';
|
|
|
|
|
|
|
|
public function getHeraldFieldName() {
|
|
|
|
return pht('Pusher projects');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
|
|
return $this->getAdapter()
|
|
|
|
->getHookEngine()
|
|
|
|
->loadViewerProjectPHIDsForHerald();
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:11:44 +02:00
|
|
|
protected function getHeraldFieldStandardType() {
|
|
|
|
return HeraldField::STANDARD_PHID_LIST;
|
2015-07-08 21:26:00 +02:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:12:44 +02:00
|
|
|
protected function getDatasource() {
|
|
|
|
return new PhabricatorProjectDatasource();
|
2015-07-08 21:26:00 +02:00
|
|
|
}
|
2015-07-16 23:12:44 +02:00
|
|
|
|
2015-07-08 21:26:00 +02:00
|
|
|
}
|