2015-07-07 20:53:17 +02:00
|
|
|
<?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);
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:11:44 +02:00
|
|
|
protected function getHeraldFieldStandardType() {
|
|
|
|
return self::STANDARD_PHID_LIST;
|
2015-07-07 20:53:17 +02:00
|
|
|
}
|
|
|
|
|
2015-07-16 23:12:44 +02:00
|
|
|
protected function getDatasource() {
|
|
|
|
return new PhabricatorProjectDatasource();
|
2015-07-07 20:53:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|