mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-16 03:42:41 +01:00
37 lines
834 B
PHP
37 lines
834 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialDependenciesField
|
||
|
extends DifferentialCustomField {
|
||
|
|
||
|
public function getFieldKey() {
|
||
|
return 'differential:dependencies';
|
||
|
}
|
||
|
|
||
|
public function getFieldName() {
|
||
|
return pht('Dependencies');
|
||
|
}
|
||
|
|
||
|
public function getFieldDescription() {
|
||
|
return pht('Lists revisions this one is depended on by.');
|
||
|
}
|
||
|
|
||
|
public function shouldAppearInPropertyView() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function renderPropertyViewLabel() {
|
||
|
return $this->getFieldName();
|
||
|
}
|
||
|
|
||
|
public function getRequiredHandlePHIDsForPropertyView() {
|
||
|
return PhabricatorEdgeQuery::loadDestinationPHIDs(
|
||
|
$this->getObject()->getPHID(),
|
||
|
PhabricatorEdgeConfig::TYPE_DREV_DEPENDED_ON_BY_DREV);
|
||
|
}
|
||
|
|
||
|
public function renderPropertyViewValue(array $handles) {
|
||
|
return $this->renderHandleList($handles);
|
||
|
}
|
||
|
|
||
|
}
|