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 | 38 | protected $board_id; |
|
37 | |||
38 | 38 | private $labelsSanityCheck; |
|
39 | |||
40 | 38 | public function __construct ($idOrArray) |
|
47 | |||
48 | public function getId () |
||
52 | |||
53 | public function getTitle () |
||
59 | |||
60 | 11 | public function getType () |
|
72 | |||
73 | /** |
||
74 | * @api |
||
75 | * @todo Remove at 0.4.0 or next breaking release |
||
76 | * @deprecated 0.3.0 This information is only set on the "Last Update" column and therefore shall be removed. This |
||
77 | * value is still available by getting the JSON equivalent of the object if it's needed. |
||
78 | * @since 0.1.0 |
||
79 | * @return string|null |
||
80 | */ |
||
81 | public function getEmptyText () |
||
87 | |||
88 | /** |
||
89 | * Get the labels for a Status column type |
||
90 | * |
||
91 | * @throws InvalidColumnException if the column is not a Status column |
||
92 | * |
||
93 | * @since 0.3.0 An InvalidColumnException is thrown when the given column is not a status column |
||
94 | * @since 0.1.0 |
||
95 | * |
||
96 | * @return string[] |
||
97 | */ |
||
98 | public function getLabels () |
||
110 | |||
111 | public function getBoardId () |
||
117 | |||
118 | public function editTitle ($title) |
||
122 | |||
123 | public function editLabels ($labels) |
||
127 | |||
128 | public function deleteColumn () |
||
136 | |||
137 | private function editField ($field, $value) |
||
149 | |||
150 | private function getColumnsUrl () |
||
154 | |||
155 | /** |
||
156 | * DaPulse will only set labels if it has content |
||
157 | */ |
||
158 | private function sanitizeLabels () |
||
172 | } |