mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
31 lines
730 B
PHP
31 lines
730 B
PHP
|
<?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();
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|