1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-15 11:22:40 +01:00
phorge-phorge/src/applications/maniphest/herald/ManiphestTaskDescriptionHeraldField.php

21 lines
405 B
PHP
Raw Normal View History

<?php
final class ManiphestTaskDescriptionHeraldField
extends ManiphestTaskHeraldField {
const FIELDCONST = 'maniphest.task.description';
public function getHeraldFieldName() {
return pht('Description');
}
public function getHeraldFieldValue($object) {
return $object->getDescription();
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_TEXT;
}
}