Differential D8695 Diff 20631 src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldBool.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldBool.php
| Show First 20 Lines • Show All 105 Lines • ▼ Show 20 Lines | public function getApplicationTransactionTitle( | ||||
| } else { | } else { | ||||
| return pht( | return pht( | ||||
| '%s unchecked %s.', | '%s unchecked %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_IS_TRUE, | |||||
| HeraldAdapter::CONDITION_IS_FALSE, | |||||
| ); | |||||
| } | |||||
| } | } | ||||