1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-16 20:02:40 +01:00
phorge-phorge/src/applications/differential/customfield/DifferentialManiphestTasksField.php

37 lines
819 B
PHP
Raw Normal View History

<?php
final class DifferentialManiphestTasksField
extends DifferentialCustomField {
public function getFieldKey() {
return 'differential:maniphest-tasks';
}
public function getFieldName() {
return pht('Maniphest Tasks');
}
public function getFieldDescription() {
return pht('Lists associated tasks.');
}
public function shouldAppearInPropertyView() {
return true;
}
public function renderPropertyViewLabel() {
return $this->getFieldName();
}
public function getRequiredHandlePHIDsForPropertyView() {
return PhabricatorEdgeQuery::loadDestinationPHIDs(
$this->getObject()->getPHID(),
PhabricatorEdgeConfig::TYPE_DREV_HAS_RELATED_TASK);
}
public function renderPropertyViewValue(array $handles) {
return $this->renderHandleList($handles);
}
}