mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
6dd191a3c1
Summary: Ref T2222. Ref T3886. This is a little early for general use, but the message parse/generate stuff requires CustomFields and FieldSpecifications to be closely aligned, so this provides at least a plausbile approach for any installs that run into trouble. Test Plan: Viewed config; reordered fields. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2222, T3886 Differential Revision: https://secure.phabricator.com/D8450
40 lines
895 B
PHP
40 lines
895 B
PHP
<?php
|
|
|
|
final class DifferentialDependenciesField
|
|
extends DifferentialCustomField {
|
|
|
|
public function getFieldKey() {
|
|
return 'differential:dependencies';
|
|
}
|
|
|
|
public function getFieldName() {
|
|
return pht('Dependencies');
|
|
}
|
|
|
|
public function canDisableField() {
|
|
return false;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
}
|