Differential D11146 Diff 26758 src/applications/differential/customfield/DifferentialTestPlanField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialTestPlanField.php
| Show First 20 Lines • Show All 66 Lines • ▼ Show 20 Lines | public function getApplicationTransactionTitle( | ||||
| $new = $xaction->getNewValue(); | $new = $xaction->getNewValue(); | ||||
| return pht( | return pht( | ||||
| '%s updated the test plan for this revision.', | '%s updated the test plan for this revision.', | ||||
| $xaction->renderHandleLink($author_phid)); | $xaction->renderHandleLink($author_phid)); | ||||
| } | } | ||||
| public function getApplicationTransactionTitleForFeed( | public function getApplicationTransactionTitleForFeed( | ||||
| PhabricatorApplicationTransaction $xaction, | PhabricatorApplicationTransaction $xaction) { | ||||
| PhabricatorFeedStory $story) { | |||||
| $object_phid = $xaction->getObjectPHID(); | $object_phid = $xaction->getObjectPHID(); | ||||
| $author_phid = $xaction->getAuthorPHID(); | $author_phid = $xaction->getAuthorPHID(); | ||||
| $old = $xaction->getOldValue(); | $old = $xaction->getOldValue(); | ||||
| $new = $xaction->getNewValue(); | $new = $xaction->getNewValue(); | ||||
| return pht( | return pht( | ||||
| '%s updated the test plan for %s.', | '%s updated the test plan for %s.', | ||||
| ▲ Show 20 Lines • Show All 119 Lines • Show Last 20 Lines | |||||