mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
32 lines
794 B
PHP
32 lines
794 B
PHP
|
<?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();
|
||
|
}
|
||
|
|
||
|
protected function getHeraldFieldStandardConditions() {
|
||
|
return HeraldField::STANDARD_LIST;
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValueType($condition) {
|
||
|
switch ($condition) {
|
||
|
case HeraldAdapter::CONDITION_EXISTS:
|
||
|
case HeraldAdapter::CONDITION_NOT_EXISTS:
|
||
|
return HeraldAdapter::VALUE_NONE;
|
||
|
default:
|
||
|
return HeraldAdapter::VALUE_PROJECT;
|
||
|
}
|
||
|
}
|
||
|
}
|