Page MenuHomec4science

DifferentialDiffRepositoryProjectsHeraldField.php
No OneTemporary

File Metadata

Created
Sat, Apr 5, 00:55

DifferentialDiffRepositoryProjectsHeraldField.php

<?php
final class DifferentialDiffRepositoryProjectsHeraldField
extends DifferentialDiffHeraldField {
const FIELDCONST = 'differential.diff.repository.projects';
public function getHeraldFieldName() {
return pht('Repository projects');
}
public function getHeraldFieldValue($object) {
$repository = $this->getAdapter()->loadRepository();
if (!$repository) {
return array();
}
return PhabricatorEdgeQuery::loadDestinationPHIDs(
$repository->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;
}
}
}

Event Timeline