Differential D9986 Diff 24115 src/applications/dashboard/storage/PhabricatorDashboardPanelTransaction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/dashboard/storage/PhabricatorDashboardPanelTransaction.php
| <?php | <?php | ||||
| final class PhabricatorDashboardPanelTransaction | final class PhabricatorDashboardPanelTransaction | ||||
| extends PhabricatorApplicationTransaction { | extends PhabricatorApplicationTransaction { | ||||
| const TYPE_NAME = 'dashpanel:name'; | const TYPE_NAME = 'dashpanel:name'; | ||||
| const TYPE_ARCHIVE = 'dashboard:archive'; | const TYPE_ARCHIVE = 'dashboard:archive'; | ||||
| public function getApplicationName() { | public function getApplicationName() { | ||||
| return 'dashboard'; | return 'dashboard'; | ||||
| } | } | ||||
| public function getApplicationTransactionType() { | public function getApplicationTransactionType() { | ||||
| return PhabricatorDashboardPHIDTypePanel::TYPECONST; | return PhabricatorDashboardPanelPHIDType::TYPECONST; | ||||
| } | } | ||||
| public function getTitle() { | public function getTitle() { | ||||
| $author_phid = $this->getAuthorPHID(); | $author_phid = $this->getAuthorPHID(); | ||||
| $object_phid = $this->getObjectPHID(); | $object_phid = $this->getObjectPHID(); | ||||
| $old = $this->getOldValue(); | $old = $this->getOldValue(); | ||||
| $new = $this->getNewValue(); | $new = $this->getNewValue(); | ||||
| ▲ Show 20 Lines • Show All 90 Lines • Show Last 20 Lines | |||||