mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
31 lines
742 B
PHP
31 lines
742 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionPreCommitContentCommitterHeraldField
|
||
|
extends DiffusionPreCommitContentHeraldField {
|
||
|
|
||
|
const FIELDCONST = 'diffusion.pre.commit.committer';
|
||
|
|
||
|
public function getHeraldFieldName() {
|
||
|
return pht('Committer');
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValue($object) {
|
||
|
return $this->getAdapter()->getCommitterPHID();
|
||
|
}
|
||
|
|
||
|
protected function getHeraldFieldStandardConditions() {
|
||
|
return self::STANDARD_PHID_NULLABLE;
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValueType($condition) {
|
||
|
switch ($condition) {
|
||
|
case HeraldAdapter::CONDITION_EXISTS:
|
||
|
case HeraldAdapter::CONDITION_NOT_EXISTS:
|
||
|
return HeraldAdapter::VALUE_NONE;
|
||
|
default:
|
||
|
return HeraldAdapter::VALUE_USER;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|