Differential D8695 Diff 20631 src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldRemarkup.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldRemarkup.php
| Show First 20 Lines • Show All 43 Lines • ▼ Show 20 Lines | public function getApplicationTransactionTitle( | ||||
| // TODO: Expose fancy transactions. | // TODO: Expose fancy transactions. | ||||
| return pht( | return pht( | ||||
| '%s edited %s.', | '%s edited %s.', | ||||
| $xaction->renderHandleLink($author_phid), | $xaction->renderHandleLink($author_phid), | ||||
| $this->getFieldName()); | $this->getFieldName()); | ||||
| } | } | ||||
| public function shouldAppearInHerald() { | |||||
| return true; | |||||
| } | |||||
| public function getHeraldFieldConditions() { | |||||
| return array( | |||||
| HeraldAdapter::CONDITION_CONTAINS, | |||||
| HeraldAdapter::CONDITION_NOT_CONTAINS, | |||||
| HeraldAdapter::CONDITION_IS, | |||||
| HeraldAdapter::CONDITION_IS_NOT, | |||||
| HeraldAdapter::CONDITION_REGEXP, | |||||
| ); | |||||
| } | |||||
| } | } | ||||