1 | <?php |
||
21 | class PulseColumn extends ApiObject |
||
22 | { |
||
23 | const API_PREFIX = "boards"; |
||
24 | |||
25 | const Date = "date"; |
||
|
|||
26 | const Numeric = "numeric"; |
||
27 | const Person = "person"; |
||
28 | const Status = "status"; |
||
29 | const Text = "text"; |
||
30 | const Timeline = "timerange"; |
||
31 | |||
32 | protected $title; |
||
33 | protected $type; |
||
34 | protected $empty_text; |
||
35 | protected $labels; |
||
36 | protected $board_id; |
||
37 | |||
38 | private $labelsSanityCheck; |
||
39 | |||
40 | /** |
||
41 | * PulseColumn constructor. |
||
42 | * |
||
43 | * @internal |
||
44 | * |
||
45 | * @param array $idOrArray |
||
46 | */ |
||
47 | 1 | public function __construct ($idOrArray) |
|
54 | |||
55 | public function getId () |
||
59 | |||
60 | public function getTitle () |
||
66 | |||
67 | public function getType () |
||
68 | { |
||
69 | $this->lazyLoad(); |
||
70 | |||
71 | // @todo Workaround due to a bug in DaPulse's API see: https://github.com/allejo/PhpPulse/issues/5 |
||
72 | if ($this->type === "color") |
||
73 | { |
||
74 | $this->type = self::Status; |
||
75 | } |
||
76 | |||
77 | return $this->type; |
||
78 | } |
||
79 | |||
80 | /** |
||
81 | * Get the labels for a Status column type |
||
82 | * |
||
83 | * @throws InvalidColumnException if the column is not a Status column |
||
84 | * |
||
85 | * @since 0.3.0 An InvalidColumnException is thrown when the given column is not a status column |
||
86 | * @since 0.1.0 |
||
87 | * |
||
88 | * @return string[] |
||
89 | */ |
||
90 | public function getLabels () |
||
91 | { |
||
92 | if ($this->getType() != PulseColumn::Status) |
||
93 | { |
||
94 | throw new InvalidColumnException('This column type does not contain labels'); |
||
95 | } |
||
96 | |||
97 | $this->lazyLoad(); |
||
98 | $this->sanitizeLabels(); |
||
99 | |||
100 | return $this->labels; |
||
101 | } |
||
102 | |||
103 | public function getBoardId () |
||
109 | |||
110 | public function editTitle ($title) |
||
114 | |||
115 | public function editLabels ($labels) |
||
119 | |||
120 | public function deleteColumn () |
||
128 | |||
129 | private function editField ($field, $value) |
||
141 | |||
142 | private function getColumnsUrl () |
||
146 | |||
147 | /** |
||
148 | * DaPulse will only set labels if it has content |
||
149 | */ |
||
150 | private function sanitizeLabels () |
||
164 | } |