Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/dashboard/layoutconfig/PhabricatorDashboardPanelRef.php
13450 views
1
<?php
2
3
final class PhabricatorDashboardPanelRef
4
extends Phobject {
5
6
private $panelPHID;
7
private $panelKey;
8
private $columnKey;
9
10
public function setPanelPHID($panel_phid) {
11
$this->panelPHID = $panel_phid;
12
return $this;
13
}
14
15
public function getPanelPHID() {
16
return $this->panelPHID;
17
}
18
19
public function setColumnKey($column_key) {
20
$this->columnKey = $column_key;
21
return $this;
22
}
23
24
public function getColumnKey() {
25
return $this->columnKey;
26
}
27
28
public function setPanelKey($panel_key) {
29
$this->panelKey = $panel_key;
30
return $this;
31
}
32
33
public function getPanelKey() {
34
return $this->panelKey;
35
}
36
37
public function toDictionary() {
38
return array(
39
'panelKey' => $this->getPanelKey(),
40
'panelPHID' => $this->getPanelPHID(),
41
'columnKey' => $this->getColumnKey(),
42
);
43
}
44
45
}
46
47