Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/storage/PhabricatorConfigTransaction.php
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | switch ($this->getTransactionType()) { | ||||
| $this->renderHandleLink($author_phid)); | $this->renderHandleLink($author_phid)); | ||||
| } | } | ||||
| break; | break; | ||||
| } | } | ||||
| return parent::getTitle(); | return parent::getTitle(); | ||||
| } | } | ||||
| public function getTitleForFeed(PhabricatorFeedStory $story = null) { | public function getTitleForFeed() { | ||||
| $author_phid = $this->getAuthorPHID(); | $author_phid = $this->getAuthorPHID(); | ||||
| $old = $this->getOldValue(); | $old = $this->getOldValue(); | ||||
| $new = $this->getNewValue(); | $new = $this->getNewValue(); | ||||
| switch ($this->getTransactionType()) { | switch ($this->getTransactionType()) { | ||||
| case self::TYPE_EDIT: | case self::TYPE_EDIT: | ||||
| $old_del = idx($old, 'deleted'); | $old_del = idx($old, 'deleted'); | ||||
| ▲ Show 20 Lines • Show All 90 Lines • Show Last 20 Lines | |||||