mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
38 lines
926 B
PHP
38 lines
926 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionCommitRevisionSubscribersHeraldField
|
||
|
extends DiffusionCommitHeraldField {
|
||
|
|
||
|
const FIELDCONST = 'diffusion.commit.revision.subscribers';
|
||
|
|
||
|
public function getHeraldFieldName() {
|
||
|
return pht('Differential subscribers');
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValue($object) {
|
||
|
$revision = $this->getAdapter()->loadDifferentialRevision();
|
||
|
|
||
|
if (!$revision) {
|
||
|
return array();
|
||
|
}
|
||
|
|
||
|
$phid = $revision->getPHID();
|
||
|
return PhabricatorSubscribersQuery::loadSubscribersForPHID($phid);
|
||
|
}
|
||
|
|
||
|
protected function getHeraldFieldStandardConditions() {
|
||
|
return self::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_USER_OR_PROJECT;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|