mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
33 lines
849 B
PHP
33 lines
849 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionCommitRepositoryProjectsHeraldField
|
||
|
extends DiffusionCommitHeraldField {
|
||
|
|
||
|
const FIELDCONST = 'diffusion.commit.repository.projects';
|
||
|
|
||
|
public function getHeraldFieldName() {
|
||
|
return pht('Repository projects');
|
||
|
}
|
||
|
|
||
|
public function getHeraldFieldValue($object) {
|
||
|
return PhabricatorEdgeQuery::loadDestinationPHIDs(
|
||
|
$object->getRepository()->getPHID(),
|
||
|
PhabricatorProjectObjectHasProjectEdgeType::EDGECONST);
|
||
|
}
|
||
|
|
||
|
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_PROJECT;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|