Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/customfield/field/PhabricatorCustomField.php
| Show First 20 Lines • Show All 997 Lines • ▼ Show 20 Lines | public function getApplicationTransactionTitle( | ||||
| $author_phid = $xaction->getAuthorPHID(); | $author_phid = $xaction->getAuthorPHID(); | ||||
| return pht( | return pht( | ||||
| '%s updated this object.', | '%s updated this object.', | ||||
| $xaction->renderHandleLink($author_phid)); | $xaction->renderHandleLink($author_phid)); | ||||
| } | } | ||||
| public function getApplicationTransactionTitleForFeed( | public function getApplicationTransactionTitleForFeed( | ||||
| PhabricatorApplicationTransaction $xaction, | PhabricatorApplicationTransaction $xaction) { | ||||
| PhabricatorFeedStory $story) { | |||||
| if ($this->proxy) { | if ($this->proxy) { | ||||
| return $this->proxy->getApplicationTransactionTitleForFeed( | return $this->proxy->getApplicationTransactionTitleForFeed( | ||||
| $xaction, | $xaction); | ||||
| $story); | |||||
| } | } | ||||
| $author_phid = $xaction->getAuthorPHID(); | $author_phid = $xaction->getAuthorPHID(); | ||||
| $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)); | ||||
| ▲ Show 20 Lines • Show All 364 Lines • Show Last 20 Lines | |||||