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

21 lines
381 B
PHP
Raw Normal View History

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