Differential D19864 Diff 47441 src/applications/transactions/storage/PhabricatorApplicationTransaction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
| Show First 20 Lines • Show All 753 Lines • ▼ Show 20 Lines | case PhabricatorTransactions::TYPE_EDGE: | ||||
| break; | break; | ||||
| case PhabricatorTransactions::TYPE_INLINESTATE: | case PhabricatorTransactions::TYPE_INLINESTATE: | ||||
| return true; | return true; | ||||
| } | } | ||||
| return $this->shouldHide(); | return $this->shouldHide(); | ||||
| } | } | ||||
| public function shouldHideForNotifications() { | |||||
| return $this->shouldHideForFeed(); | |||||
| } | |||||
| public function getTitleForMail() { | public function getTitleForMail() { | ||||
| return id(clone $this)->setRenderingTarget('text')->getTitle(); | return id(clone $this)->setRenderingTarget('text')->getTitle(); | ||||
| } | } | ||||
| public function getTitleForHTMLMail() { | public function getTitleForHTMLMail() { | ||||
| $title = $this->getTitleForMail(); | $title = $this->getTitleForMail(); | ||||
| if ($title === null) { | if ($title === null) { | ||||
| return null; | return null; | ||||
| ▲ Show 20 Lines • Show All 934 Lines • Show Last 20 Lines | |||||