Differential D9986 Diff 24115 src/applications/dashboard/storage/PhabricatorDashboardTransaction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/dashboard/storage/PhabricatorDashboardTransaction.php
| <?php | <?php | ||||
| final class PhabricatorDashboardTransaction | final class PhabricatorDashboardTransaction | ||||
| extends PhabricatorApplicationTransaction { | extends PhabricatorApplicationTransaction { | ||||
| const TYPE_NAME = 'dashboard:name'; | const TYPE_NAME = 'dashboard:name'; | ||||
| const TYPE_LAYOUT_MODE = 'dashboard:layoutmode'; | const TYPE_LAYOUT_MODE = 'dashboard:layoutmode'; | ||||
| public function getApplicationName() { | public function getApplicationName() { | ||||
| return 'dashboard'; | return 'dashboard'; | ||||
| } | } | ||||
| public function getApplicationTransactionType() { | public function getApplicationTransactionType() { | ||||
| return PhabricatorDashboardPHIDTypeDashboard::TYPECONST; | return PhabricatorDashboardDashboardPHIDType::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 79 Lines • Show Last 20 Lines | |||||