Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/field/PhabricatorCustomField.php
| Show First 20 Lines • Show All 898 Lines • ▼ Show 20 Lines | public function getApplicationTransactionTitleForFeed( | ||||
| $object_phid = $xaction->getObjectPHID(); | $object_phid = $xaction->getObjectPHID(); | ||||
| return pht( | return pht( | ||||
| '%s updated %s.', | '%s updated %s.', | ||||
| $xaction->renderHandleLink($author_phid), | $xaction->renderHandleLink($author_phid), | ||||
| $xaction->renderHandleLink($object_phid)); | $xaction->renderHandleLink($object_phid)); | ||||
| } | } | ||||
| public function getApplicationTransactionHasChangeDetails( | |||||
| PhabricatorApplicationTransaction $xaction) { | |||||
| if ($this->proxy) { | |||||
| return $this->proxy->getApplicationTransactionHasChangeDetails( | |||||
| $xaction); | |||||
| } | |||||
| return false; | |||||
| } | |||||
| public function getApplicationTransactionChangeDetails( | |||||
| PhabricatorApplicationTransaction $xaction, | |||||
| PhabricatorUser $viewer) { | |||||
| if ($this->proxy) { | |||||
| return $this->proxy->getApplicationTransactionChangeDetails( | |||||
| $xaction, | |||||
| $viewer); | |||||
| } | |||||
| return null; | |||||
| } | |||||
| /* -( Edit View )---------------------------------------------------------- */ | /* -( Edit View )---------------------------------------------------------- */ | ||||
| /** | /** | ||||
| * @task edit | * @task edit | ||||
| */ | */ | ||||
| public function shouldAppearInEditView() { | public function shouldAppearInEditView() { | ||||
| if ($this->proxy) { | if ($this->proxy) { | ||||
| ▲ Show 20 Lines • Show All 101 Lines • Show Last 20 Lines | |||||