Differential D20409 Diff 48716 src/applications/dashboard/layoutconfig/PhabricatorDashboardColumn.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/dashboard/layoutconfig/PhabricatorDashboardColumn.php
| Show All 19 Lines | public function addClass($class) { | ||||
| $this->classes[] = $class; | $this->classes[] = $class; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getClasses() { | public function getClasses() { | ||||
| return $this->classes; | return $this->classes; | ||||
| } | } | ||||
| public function setPanelRefs(array $refs) { | |||||
| assert_instances_of($refs, 'PhabricatorDashboardPanelRef'); | |||||
| $this->refs = $refs; | |||||
| return $this; | |||||
| } | |||||
| public function addPanelRef(PhabricatorDashboardPanelRef $ref) { | public function addPanelRef(PhabricatorDashboardPanelRef $ref) { | ||||
| $this->refs[] = $ref; | $this->refs[] = $ref; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getPanelRefs() { | public function getPanelRefs() { | ||||
| return $this->refs; | return $this->refs; | ||||
| } | } | ||||
| } | } | ||||