Differential D20397 Diff 48688 src/applications/dashboard/engine/PhabricatorDashboardPanelRenderingEngine.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/dashboard/engine/PhabricatorDashboardPanelRenderingEngine.php
| Show All 10 Lines | final class PhabricatorDashboardPanelRenderingEngine extends Phobject { | ||||
| private $viewer; | private $viewer; | ||||
| private $enableAsyncRendering; | private $enableAsyncRendering; | ||||
| private $parentPanelPHIDs; | private $parentPanelPHIDs; | ||||
| private $headerMode = self::HEADER_MODE_NORMAL; | private $headerMode = self::HEADER_MODE_NORMAL; | ||||
| private $dashboardID; | private $dashboardID; | ||||
| private $movable = true; | private $movable = true; | ||||
| private $panelHandle; | private $panelHandle; | ||||
| private $editMode; | private $editMode; | ||||
| private $contextObject; | |||||
| public function setContextObject($object) { | |||||
| $this->contextObject = $object; | |||||
| return $this; | |||||
| } | |||||
| public function getContextObject() { | |||||
| return $this->contextObject; | |||||
| } | |||||
| public function setDashboardID($id) { | public function setDashboardID($id) { | ||||
| $this->dashboardID = $id; | $this->dashboardID = $id; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getDashboardID() { | public function getDashboardID() { | ||||
| return $this->dashboardID; | return $this->dashboardID; | ||||
| ▲ Show 20 Lines • Show All 383 Lines • Show Last 20 Lines | |||||