Differential D11146 Diff 26758 src/applications/differential/customfield/DifferentialRepositoryField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialRepositoryField.php
| Show First 20 Lines • Show All 93 Lines • ▼ Show 20 Lines | if ($old && $new) { | ||||
| return pht( | return pht( | ||||
| '%s removed %s as the repository for this revision.', | '%s removed %s as the repository for this revision.', | ||||
| $xaction->renderHandleLink($author_phid), | $xaction->renderHandleLink($author_phid), | ||||
| $xaction->renderHandleLink($old)); | $xaction->renderHandleLink($old)); | ||||
| } | } | ||||
| } | } | ||||
| 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(); | ||||
| if ($old && $new) { | if ($old && $new) { | ||||
| return pht( | return pht( | ||||
| ▲ Show 20 Lines • Show All 59 Lines • Show Last 20 Lines | |||||