mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 00:02:41 +01:00
31 lines
733 B
PHP
31 lines
733 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionCommitReviewerHeraldField
|
||
|
extends DiffusionCommitHeraldField {
|
||
|
|
||
|
const FIELDCONST = 'diffusion.commit.reviewer';
|
||
|
|
||
|
public function getHeraldFieldName() {
|
||
|
return pht('Reviewer');
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValue($object) {
|
||
|
return $object->getCommitData()->getCommitDetail('reviewerPHID');
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|