@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * |
24 | 24 | */ |
25 | 25 | class DataTable extends Widget { |
26 | - use TableTrait,DataTableFieldAsTrait,HasCheckboxesTrait; |
|
26 | + use TableTrait, DataTableFieldAsTrait, HasCheckboxesTrait; |
|
27 | 27 | protected $_searchField; |
28 | 28 | protected $_urls; |
29 | 29 | protected $_pagination; |
@@ -39,35 +39,35 @@ discard block |
||
39 | 39 | protected $_sortable; |
40 | 40 | |
41 | 41 | |
42 | - public function __construct($identifier,$model,$modelInstance=NULL) { |
|
43 | - parent::__construct($identifier, $model,$modelInstance); |
|
44 | - $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0,0), false); |
|
42 | + public function __construct($identifier, $model, $modelInstance=NULL) { |
|
43 | + parent::__construct($identifier, $model, $modelInstance); |
|
44 | + $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0, 0), false); |
|
45 | 45 | $this->_urls=[]; |
46 | - $this->_emptyMessage=new HtmlMessage("","nothing to display"); |
|
46 | + $this->_emptyMessage=new HtmlMessage("", "nothing to display"); |
|
47 | 47 | $this->_emptyMessage->setIcon("info circle"); |
48 | 48 | } |
49 | 49 | |
50 | - public function run(JsUtils $js){ |
|
51 | - if($this->_hasCheckboxes && isset($js)){ |
|
50 | + public function run(JsUtils $js) { |
|
51 | + if ($this->_hasCheckboxes && isset($js)) { |
|
52 | 52 | $this->_runCheckboxes($js); |
53 | 53 | } |
54 | - if($this->_visibleHover){ |
|
55 | - $js->execOn("mouseover", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'visible');",["preventDefault"=>false,"stopPropagation"=>true]); |
|
56 | - $js->execOn("mouseout", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'hidden');",["preventDefault"=>false,"stopPropagation"=>true]); |
|
54 | + if ($this->_visibleHover) { |
|
55 | + $js->execOn("mouseover", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'visible');", ["preventDefault"=>false, "stopPropagation"=>true]); |
|
56 | + $js->execOn("mouseout", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'hidden');", ["preventDefault"=>false, "stopPropagation"=>true]); |
|
57 | 57 | } |
58 | - if(\is_array($this->_deleteBehavior)) |
|
59 | - $this->_generateBehavior("delete",$this->_deleteBehavior, $js); |
|
60 | - if(\is_array($this->_editBehavior)) |
|
61 | - $this->_generateBehavior("edit",$this->_editBehavior,$js); |
|
58 | + if (\is_array($this->_deleteBehavior)) |
|
59 | + $this->_generateBehavior("delete", $this->_deleteBehavior, $js); |
|
60 | + if (\is_array($this->_editBehavior)) |
|
61 | + $this->_generateBehavior("edit", $this->_editBehavior, $js); |
|
62 | 62 | return parent::run($js); |
63 | 63 | } |
64 | 64 | |
65 | 65 | |
66 | 66 | |
67 | - protected function _generateBehavior($op,$params,JsUtils $js){ |
|
68 | - if(isset($this->_urls[$op])){ |
|
69 | - $params=\array_merge($params,["attr"=>"data-ajax"]); |
|
70 | - $js->getOnClick("#".$this->identifier." ._".$op, $this->_urls[$op],$this->getTargetSelector(),$params); |
|
67 | + protected function _generateBehavior($op, $params, JsUtils $js) { |
|
68 | + if (isset($this->_urls[$op])) { |
|
69 | + $params=\array_merge($params, ["attr"=>"data-ajax"]); |
|
70 | + $js->getOnClick("#".$this->identifier." ._".$op, $this->_urls[$op], $this->getTargetSelector(), $params); |
|
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
@@ -80,137 +80,137 @@ discard block |
||
80 | 80 | } |
81 | 81 | |
82 | 82 | |
83 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
84 | - if(!$this->_generated){ |
|
83 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
84 | + if (!$this->_generated) { |
|
85 | 85 | $this->_instanceViewer->setInstance($this->_model); |
86 | 86 | $captions=$this->_instanceViewer->getCaptions(); |
87 | 87 | |
88 | 88 | $table=$this->content["table"]; |
89 | 89 | |
90 | - if($this->_hasCheckboxes){ |
|
90 | + if ($this->_hasCheckboxes) { |
|
91 | 91 | $this->_generateMainCheckbox($captions); |
92 | 92 | } |
93 | 93 | |
94 | 94 | $table->setRowCount(0, \sizeof($captions)); |
95 | - $this->_generateHeader($table,$captions); |
|
95 | + $this->_generateHeader($table, $captions); |
|
96 | 96 | |
97 | - if(isset($this->_compileParts)) |
|
97 | + if (isset($this->_compileParts)) |
|
98 | 98 | $table->setCompileParts($this->_compileParts); |
99 | 99 | |
100 | - if(isset($this->_searchField) && isset($js)){ |
|
101 | - if(isset($this->_urls["refresh"])) |
|
102 | - $this->_searchField->postOn("change", $this->_urls["refresh"],"{'s':$(this).val()}","#".$this->identifier." tbody",["preventDefault"=>false,"jqueryDone"=>"replaceWith"]); |
|
100 | + if (isset($this->_searchField) && isset($js)) { |
|
101 | + if (isset($this->_urls["refresh"])) |
|
102 | + $this->_searchField->postOn("change", $this->_urls["refresh"], "{'s':$(this).val()}", "#".$this->identifier." tbody", ["preventDefault"=>false, "jqueryDone"=>"replaceWith"]); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | $this->_generateContent($table); |
106 | 106 | |
107 | - if($this->_hasCheckboxes && $table->hasPart("thead")){ |
|
107 | + if ($this->_hasCheckboxes && $table->hasPart("thead")) { |
|
108 | 108 | $table->getHeader()->getCell(0, 0)->addClass("no-sort"); |
109 | 109 | } |
110 | 110 | |
111 | - if(isset($this->_toolbar)){ |
|
111 | + if (isset($this->_toolbar)) { |
|
112 | 112 | $this->_setToolbarPosition($table, $captions); |
113 | 113 | } |
114 | - if(isset($this->_pagination) && $this->_pagination->getVisible()){ |
|
115 | - $this->_generatePagination($table,$js); |
|
114 | + if (isset($this->_pagination) && $this->_pagination->getVisible()) { |
|
115 | + $this->_generatePagination($table, $js); |
|
116 | 116 | } |
117 | 117 | |
118 | - $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"table",PositionInTable::AFTERTABLE]); |
|
118 | + $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "table", PositionInTable::AFTERTABLE]); |
|
119 | 119 | $this->_compileForm(); |
120 | 120 | |
121 | 121 | $this->_generated=true; |
122 | 122 | } |
123 | - return parent::compile($js,$view); |
|
123 | + return parent::compile($js, $view); |
|
124 | 124 | } |
125 | 125 | |
126 | - protected function _generateHeader(HtmlTable $table,$captions){ |
|
126 | + protected function _generateHeader(HtmlTable $table, $captions) { |
|
127 | 127 | $table->setHeaderValues($captions); |
128 | - if(isset($this->_sortable)){ |
|
128 | + if (isset($this->_sortable)) { |
|
129 | 129 | $table->setSortable($this->_sortable); |
130 | 130 | } |
131 | 131 | } |
132 | 132 | |
133 | 133 | |
134 | 134 | |
135 | - protected function _generateContent($table){ |
|
135 | + protected function _generateContent($table) { |
|
136 | 136 | $objects=$this->_modelInstance; |
137 | - if(isset($this->_pagination)){ |
|
137 | + if (isset($this->_pagination)) { |
|
138 | 138 | $objects=$this->_pagination->getObjects($this->_modelInstance); |
139 | 139 | } |
140 | 140 | InstanceViewer::setIndex(0); |
141 | 141 | $table->fromDatabaseObjects($objects, function($instance) use($table){ |
142 | 142 | return $this->_generateRow($instance, $table); |
143 | 143 | }); |
144 | - if($table->getRowCount()==0){ |
|
144 | + if ($table->getRowCount()==0) { |
|
145 | 145 | $result=$table->addRow(); |
146 | 146 | $result->mergeRow(); |
147 | 147 | $result->setValues([$this->_emptyMessage]); |
148 | 148 | } |
149 | 149 | } |
150 | 150 | |
151 | - protected function _generateRow($instance,&$table,$checkedClass=null){ |
|
151 | + protected function _generateRow($instance, &$table, $checkedClass=null) { |
|
152 | 152 | $this->_instanceViewer->setInstance($instance); |
153 | 153 | InstanceViewer::$index++; |
154 | - $values= $this->_instanceViewer->getValues(); |
|
154 | + $values=$this->_instanceViewer->getValues(); |
|
155 | 155 | $id=$this->_instanceViewer->getIdentifier(); |
156 | - if($this->_hasCheckboxes){ |
|
157 | - $ck=new HtmlCheckbox("ck-".$this->identifier."-".$id,""); |
|
156 | + if ($this->_hasCheckboxes) { |
|
157 | + $ck=new HtmlCheckbox("ck-".$this->identifier."-".$id, ""); |
|
158 | 158 | $ck->setOnChange("event.stopPropagation();"); |
159 | 159 | $field=$ck->getField(); |
160 | - $field->setProperty("value",$id); |
|
160 | + $field->setProperty("value", $id); |
|
161 | 161 | $field->setProperty("name", "selection[]"); |
162 | - if(isset($checkedClass)) |
|
162 | + if (isset($checkedClass)) |
|
163 | 163 | $field->setClass($checkedClass); |
164 | 164 | \array_unshift($values, $ck); |
165 | 165 | } |
166 | 166 | $result=$table->newRow(); |
167 | 167 | $result->setIdentifier($this->identifier."-tr-".$id); |
168 | - $result->setProperty("data-ajax",$id); |
|
168 | + $result->setProperty("data-ajax", $id); |
|
169 | 169 | $result->setValues($values); |
170 | - $result->addToProperty("class",$this->_rowClass); |
|
170 | + $result->addToProperty("class", $this->_rowClass); |
|
171 | 171 | return $result; |
172 | 172 | } |
173 | 173 | |
174 | - protected function _generatePagination($table,$js=NULL){ |
|
175 | - if(isset($this->_toolbar)){ |
|
176 | - if($this->_toolbarPosition==PositionInTable::FOOTER) |
|
174 | + protected function _generatePagination($table, $js=NULL) { |
|
175 | + if (isset($this->_toolbar)) { |
|
176 | + if ($this->_toolbarPosition==PositionInTable::FOOTER) |
|
177 | 177 | $this->_toolbar->setFloated("left"); |
178 | 178 | } |
179 | 179 | $footer=$table->getFooter(); |
180 | 180 | $footer->mergeCol(); |
181 | - $menu=new HtmlPaginationMenu("pagination-".$this->identifier,$this->_pagination->getPagesNumbers()); |
|
181 | + $menu=new HtmlPaginationMenu("pagination-".$this->identifier, $this->_pagination->getPagesNumbers()); |
|
182 | 182 | $menu->floatRight(); |
183 | 183 | $menu->setActiveItem($this->_pagination->getPage()-1); |
184 | 184 | $footer->addValues($menu); |
185 | - $this->_associatePaginationBehavior($menu,$js); |
|
185 | + $this->_associatePaginationBehavior($menu, $js); |
|
186 | 186 | } |
187 | 187 | |
188 | - protected function _associatePaginationBehavior(HtmlMenu $menu,JsUtils $js=NULL){ |
|
189 | - if(isset($this->_urls["refresh"])){ |
|
190 | - $menu->postOnClick($this->_urls["refresh"],"{'p':$(this).attr('data-page')}",$this->getRefreshSelector(),["preventDefault"=>false,"jqueryDone"=>"replaceWith"]); |
|
188 | + protected function _associatePaginationBehavior(HtmlMenu $menu, JsUtils $js=NULL) { |
|
189 | + if (isset($this->_urls["refresh"])) { |
|
190 | + $menu->postOnClick($this->_urls["refresh"], "{'p':$(this).attr('data-page')}", $this->getRefreshSelector(), ["preventDefault"=>false, "jqueryDone"=>"replaceWith"]); |
|
191 | 191 | } |
192 | 192 | } |
193 | 193 | |
194 | - protected function _getFieldName($index){ |
|
194 | + protected function _getFieldName($index) { |
|
195 | 195 | return parent::_getFieldName($index)."[]"; |
196 | 196 | } |
197 | 197 | |
198 | - protected function _getFieldCaption($index){ |
|
198 | + protected function _getFieldCaption($index) { |
|
199 | 199 | return null; |
200 | 200 | } |
201 | 201 | |
202 | - protected function _setToolbarPosition($table,$captions=NULL){ |
|
203 | - switch ($this->_toolbarPosition){ |
|
202 | + protected function _setToolbarPosition($table, $captions=NULL) { |
|
203 | + switch ($this->_toolbarPosition) { |
|
204 | 204 | case PositionInTable::BEFORETABLE: |
205 | 205 | case PositionInTable::AFTERTABLE: |
206 | - if(isset($this->_compileParts)===false){ |
|
206 | + if (isset($this->_compileParts)===false) { |
|
207 | 207 | $this->content[$this->_toolbarPosition]=$this->_toolbar; |
208 | 208 | } |
209 | 209 | break; |
210 | 210 | case PositionInTable::HEADER: |
211 | 211 | case PositionInTable::FOOTER: |
212 | 212 | case PositionInTable::BODY: |
213 | - $this->addToolbarRow($this->_toolbarPosition,$table, $captions); |
|
213 | + $this->addToolbarRow($this->_toolbarPosition, $table, $captions); |
|
214 | 214 | break; |
215 | 215 | } |
216 | 216 | } |
@@ -222,23 +222,23 @@ discard block |
||
222 | 222 | * @param callable $callback function called after the field compilation |
223 | 223 | * @return DataTable |
224 | 224 | */ |
225 | - public function afterCompile($index,$callback){ |
|
226 | - $this->_instanceViewer->afterCompile($index,$callback); |
|
225 | + public function afterCompile($index, $callback) { |
|
226 | + $this->_instanceViewer->afterCompile($index, $callback); |
|
227 | 227 | return $this; |
228 | 228 | } |
229 | 229 | |
230 | - private function addToolbarRow($part,$table,$captions){ |
|
230 | + private function addToolbarRow($part, $table, $captions) { |
|
231 | 231 | $hasPart=$table->hasPart($part); |
232 | - if($hasPart){ |
|
232 | + if ($hasPart) { |
|
233 | 233 | $row=$table->getPart($part)->addRow(\sizeof($captions)); |
234 | - }else{ |
|
234 | + } else { |
|
235 | 235 | $row=$table->getPart($part)->getRow(0); |
236 | 236 | } |
237 | 237 | $row->mergeCol(); |
238 | 238 | $row->setValues([$this->_toolbar]); |
239 | 239 | } |
240 | 240 | |
241 | - public function getHtmlComponent(){ |
|
241 | + public function getHtmlComponent() { |
|
242 | 242 | return $this->content["table"]; |
243 | 243 | } |
244 | 244 | |
@@ -252,12 +252,12 @@ discard block |
||
252 | 252 | * @return DataTable |
253 | 253 | */ |
254 | 254 | public function setUrls($urls) { |
255 | - if(\is_array($urls)){ |
|
256 | - $this->_urls["refresh"]=JArray::getValue($urls, "refresh",0); |
|
257 | - $this->_urls["edit"]=JArray::getValue($urls, "edit",1); |
|
258 | - $this->_urls["delete"]=JArray::getValue($urls, "delete",2); |
|
259 | - }else{ |
|
260 | - $this->_urls=["refresh"=>$urls,"edit"=>$urls,"delete"=>$urls]; |
|
255 | + if (\is_array($urls)) { |
|
256 | + $this->_urls["refresh"]=JArray::getValue($urls, "refresh", 0); |
|
257 | + $this->_urls["edit"]=JArray::getValue($urls, "edit", 1); |
|
258 | + $this->_urls["delete"]=JArray::getValue($urls, "delete", 2); |
|
259 | + } else { |
|
260 | + $this->_urls=["refresh"=>$urls, "edit"=>$urls, "delete"=>$urls]; |
|
261 | 261 | } |
262 | 262 | return $this; |
263 | 263 | } |
@@ -270,8 +270,8 @@ discard block |
||
270 | 270 | * @param number $pages_visibles The number of visible pages in the Pagination component |
271 | 271 | * @return DataTable |
272 | 272 | */ |
273 | - public function paginate($page,$total_rowcount,$items_per_page=10,$pages_visibles=null){ |
|
274 | - $this->_pagination=new Pagination($items_per_page,$pages_visibles,$page,$total_rowcount); |
|
273 | + public function paginate($page, $total_rowcount, $items_per_page=10, $pages_visibles=null) { |
|
274 | + $this->_pagination=new Pagination($items_per_page, $pages_visibles, $page, $total_rowcount); |
|
275 | 275 | return $this; |
276 | 276 | } |
277 | 277 | |
@@ -282,8 +282,8 @@ discard block |
||
282 | 282 | * @param number $pages_visibles The number of visible pages in the Pagination component |
283 | 283 | * @return DataTable |
284 | 284 | */ |
285 | - public function autoPaginate($page=1,$items_per_page=10,$pages_visibles=4){ |
|
286 | - $this->_pagination=new Pagination($items_per_page,$pages_visibles,$page); |
|
285 | + public function autoPaginate($page=1, $items_per_page=10, $pages_visibles=4) { |
|
286 | + $this->_pagination=new Pagination($items_per_page, $pages_visibles, $page); |
|
287 | 287 | return $this; |
288 | 288 | } |
289 | 289 | |
@@ -293,20 +293,20 @@ discard block |
||
293 | 293 | * @param array $compileParts |
294 | 294 | * @return DataTable |
295 | 295 | */ |
296 | - public function refresh($compileParts=["tbody"]){ |
|
296 | + public function refresh($compileParts=["tbody"]) { |
|
297 | 297 | $this->_compileParts=$compileParts; |
298 | 298 | return $this; |
299 | 299 | } |
300 | 300 | |
301 | 301 | |
302 | - public function addSearchInToolbar($position=Direction::RIGHT){ |
|
302 | + public function addSearchInToolbar($position=Direction::RIGHT) { |
|
303 | 303 | return $this->addInToolbar($this->getSearchField())->setPosition($position); |
304 | 304 | } |
305 | 305 | |
306 | - public function getSearchField(){ |
|
307 | - if(isset($this->_searchField)===false){ |
|
308 | - $this->_searchField=new HtmlInput("search-".$this->identifier,"search","","Search..."); |
|
309 | - $this->_searchField->addIcon("search",Direction::RIGHT); |
|
306 | + public function getSearchField() { |
|
307 | + if (isset($this->_searchField)===false) { |
|
308 | + $this->_searchField=new HtmlInput("search-".$this->identifier, "search", "", "Search..."); |
|
309 | + $this->_searchField->addIcon("search", Direction::RIGHT); |
|
310 | 310 | } |
311 | 311 | return $this->_searchField; |
312 | 312 | } |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | return $this; |
323 | 323 | } |
324 | 324 | |
325 | - public function asForm(){ |
|
325 | + public function asForm() { |
|
326 | 326 | return $this->getForm(); |
327 | 327 | } |
328 | 328 | |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | |
331 | 331 | protected function getTargetSelector() { |
332 | 332 | $result=$this->_targetSelector; |
333 | - if(!isset($result)) |
|
333 | + if (!isset($result)) |
|
334 | 334 | $result="#".$this->identifier; |
335 | 335 | return $result; |
336 | 336 | } |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | } |
347 | 347 | |
348 | 348 | public function getRefreshSelector() { |
349 | - if(isset($this->_refreshSelector)) |
|
349 | + if (isset($this->_refreshSelector)) |
|
350 | 350 | return $this->_refreshSelector; |
351 | 351 | return "#".$this->identifier." tbody"; |
352 | 352 | } |
@@ -364,9 +364,9 @@ discard block |
||
364 | 364 | * {@inheritDoc} |
365 | 365 | * @see \Ajax\common\Widget::show() |
366 | 366 | */ |
367 | - public function show($modelInstance){ |
|
368 | - if(\is_array($modelInstance)){ |
|
369 | - if(\is_array(array_values($modelInstance)[0])) |
|
367 | + public function show($modelInstance) { |
|
368 | + if (\is_array($modelInstance)) { |
|
369 | + if (\is_array(array_values($modelInstance)[0])) |
|
370 | 370 | $modelInstance=\json_decode(\json_encode($modelInstance), FALSE); |
371 | 371 | } |
372 | 372 | $this->_modelInstance=$modelInstance; |
@@ -401,12 +401,12 @@ discard block |
||
401 | 401 | return $this; |
402 | 402 | } |
403 | 403 | |
404 | - public function setActiveRowSelector($class="active",$event="click",$multiple=false){ |
|
405 | - $this->getTable()->setActiveRowSelector($class,$event,$multiple); |
|
404 | + public function setActiveRowSelector($class="active", $event="click", $multiple=false) { |
|
405 | + $this->getTable()->setActiveRowSelector($class, $event, $multiple); |
|
406 | 406 | return $this; |
407 | 407 | } |
408 | 408 | |
409 | - public function hideColumn($colIndex){ |
|
409 | + public function hideColumn($colIndex) { |
|
410 | 410 | $this->getTable()->hideColumn($colIndex); |
411 | 411 | return $this; |
412 | 412 | } |
@@ -27,23 +27,23 @@ discard block |
||
27 | 27 | * @property boolean $_edition |
28 | 28 | * @property mixed _modelInstance |
29 | 29 | */ |
30 | -trait FieldAsTrait{ |
|
30 | +trait FieldAsTrait { |
|
31 | 31 | |
32 | - abstract protected function _getFieldIdentifier($prefix,$name=""); |
|
33 | - abstract public function setValueFunction($index,$callback); |
|
32 | + abstract protected function _getFieldIdentifier($prefix, $name=""); |
|
33 | + abstract public function setValueFunction($index, $callback); |
|
34 | 34 | abstract protected function _getFieldName($index); |
35 | 35 | abstract protected function _getFieldCaption($index); |
36 | - abstract protected function _buttonAsSubmit(BaseHtml &$button,$event,$url,$responseElement=NULL,$parameters=NULL); |
|
36 | + abstract protected function _buttonAsSubmit(BaseHtml&$button, $event, $url, $responseElement=NULL, $parameters=NULL); |
|
37 | 37 | |
38 | 38 | /** |
39 | 39 | * @param HtmlFormField $element |
40 | 40 | * @param array $attributes |
41 | 41 | */ |
42 | - protected function _applyAttributes($element,&$attributes,$index){ |
|
43 | - if(isset($attributes["jsCallback"])){ |
|
42 | + protected function _applyAttributes($element, &$attributes, $index) { |
|
43 | + if (isset($attributes["jsCallback"])) { |
|
44 | 44 | $callback=$attributes["jsCallback"]; |
45 | - if(\is_callable($callback)){ |
|
46 | - $callback($element,$this->_modelInstance,$index); |
|
45 | + if (\is_callable($callback)) { |
|
46 | + $callback($element, $this->_modelInstance, $index); |
|
47 | 47 | unset($attributes["jsCallback"]); |
48 | 48 | } |
49 | 49 | } |
@@ -53,43 +53,43 @@ discard block |
||
53 | 53 | $element->fromArray($attributes); |
54 | 54 | } |
55 | 55 | |
56 | - private function _getLabelField($caption,$icon=NULL){ |
|
57 | - $label=new HtmlLabel($this->_getFieldIdentifier("lbl"),$caption,$icon); |
|
56 | + private function _getLabelField($caption, $icon=NULL) { |
|
57 | + $label=new HtmlLabel($this->_getFieldIdentifier("lbl"), $caption, $icon); |
|
58 | 58 | return $label; |
59 | 59 | } |
60 | 60 | |
61 | 61 | |
62 | - protected function _addRules($element,&$attributes){ |
|
63 | - if(isset($attributes["rules"])){ |
|
62 | + protected function _addRules($element, &$attributes) { |
|
63 | + if (isset($attributes["rules"])) { |
|
64 | 64 | $rules=$attributes["rules"]; |
65 | - if(\is_array($rules)){ |
|
65 | + if (\is_array($rules)) { |
|
66 | 66 | $element->addRules($rules); |
67 | 67 | } |
68 | - else{ |
|
68 | + else { |
|
69 | 69 | $element->addRule($rules); |
70 | 70 | } |
71 | 71 | unset($attributes["rules"]); |
72 | 72 | } |
73 | 73 | } |
74 | 74 | |
75 | - protected function _prepareFormFields(&$field,$name,&$attributes){ |
|
75 | + protected function _prepareFormFields(&$field, $name, &$attributes) { |
|
76 | 76 | $field->setName($name); |
77 | 77 | $this->_addRules($field, $attributes); |
78 | 78 | return $field; |
79 | 79 | } |
80 | 80 | |
81 | - protected function _fieldAs($elementCallback,&$index,$attributes=NULL,$prefix=null){ |
|
82 | - $this->setValueFunction($index,function($value,$instance,$index) use (&$attributes,$elementCallback,$prefix){ |
|
81 | + protected function _fieldAs($elementCallback, &$index, $attributes=NULL, $prefix=null) { |
|
82 | + $this->setValueFunction($index, function($value, $instance, $index) use (&$attributes, $elementCallback, $prefix){ |
|
83 | 83 | $caption=$this->_getFieldCaption($index); |
84 | 84 | $name=$this->_getFieldName($index); |
85 | - $id=$this->_getFieldIdentifier($prefix,$name); |
|
86 | - if(isset($attributes["name"])){ |
|
85 | + $id=$this->_getFieldIdentifier($prefix, $name); |
|
86 | + if (isset($attributes["name"])) { |
|
87 | 87 | $name=$attributes["name"]; |
88 | 88 | unset($attributes["name"]); |
89 | 89 | } |
90 | - $element=$elementCallback($id,$name,$value,$caption); |
|
91 | - if(\is_array($attributes)){ |
|
92 | - $this->_applyAttributes($element, $attributes,$index); |
|
90 | + $element=$elementCallback($id, $name, $value, $caption); |
|
91 | + if (\is_array($attributes)) { |
|
92 | + $this->_applyAttributes($element, $attributes, $index); |
|
93 | 93 | } |
94 | 94 | $element->setDisabled(!$this->_edition); |
95 | 95 | return $element; |
@@ -98,175 +98,175 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | |
101 | - public function fieldAsProgress($index,$label=NULL, $attributes=array()){ |
|
102 | - $this->setValueFunction($index,function($value) use($label,$attributes){ |
|
103 | - $pb=new HtmlProgress($this->_getFieldIdentifier("pb"),$value,$label,$attributes); |
|
101 | + public function fieldAsProgress($index, $label=NULL, $attributes=array()) { |
|
102 | + $this->setValueFunction($index, function($value) use($label, $attributes){ |
|
103 | + $pb=new HtmlProgress($this->_getFieldIdentifier("pb"), $value, $label, $attributes); |
|
104 | 104 | return $pb; |
105 | 105 | }); |
106 | 106 | return $this; |
107 | 107 | } |
108 | 108 | |
109 | - public function fieldAsRating($index,$max=5, $icon=""){ |
|
110 | - $this->setValueFunction($index,function($value) use($max,$icon){ |
|
111 | - $rating=new HtmlRating($this->_getFieldIdentifier("rat"),$value,$max,$icon); |
|
109 | + public function fieldAsRating($index, $max=5, $icon="") { |
|
110 | + $this->setValueFunction($index, function($value) use($max, $icon){ |
|
111 | + $rating=new HtmlRating($this->_getFieldIdentifier("rat"), $value, $max, $icon); |
|
112 | 112 | return $rating; |
113 | 113 | }); |
114 | 114 | return $this; |
115 | 115 | } |
116 | 116 | |
117 | - public function fieldAsLabel($index,$icon=NULL){ |
|
118 | - $this->setValueFunction($index,function($caption) use($icon){ |
|
119 | - $lbl=$this->_getLabelField($caption,$icon); |
|
117 | + public function fieldAsLabel($index, $icon=NULL) { |
|
118 | + $this->setValueFunction($index, function($caption) use($icon){ |
|
119 | + $lbl=$this->_getLabelField($caption, $icon); |
|
120 | 120 | return $lbl; |
121 | 121 | }); |
122 | 122 | return $this; |
123 | 123 | } |
124 | 124 | |
125 | - public function fieldAsHeader($index,$niveau=1,$icon=NULL,$attributes=NULL){ |
|
126 | - return $this->_fieldAs(function($id,$name,$value) use($niveau,$icon){ |
|
127 | - $header=new HtmlHeader($id,$niveau,$value); |
|
128 | - if(isset($icon)) |
|
125 | + public function fieldAsHeader($index, $niveau=1, $icon=NULL, $attributes=NULL) { |
|
126 | + return $this->_fieldAs(function($id, $name, $value) use($niveau, $icon){ |
|
127 | + $header=new HtmlHeader($id, $niveau, $value); |
|
128 | + if (isset($icon)) |
|
129 | 129 | $header->asIcon($icon, $value); |
130 | 130 | return $header; |
131 | - }, $index,$attributes,"header"); |
|
131 | + }, $index, $attributes, "header"); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | |
135 | - public function fieldAsImage($index,$size=Size::MINI,$circular=false){ |
|
136 | - $this->setValueFunction($index,function($img) use($size,$circular){ |
|
137 | - $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular)$image->setCircular(); |
|
135 | + public function fieldAsImage($index, $size=Size::MINI, $circular=false) { |
|
136 | + $this->setValueFunction($index, function($img) use($size, $circular){ |
|
137 | + $image=new HtmlImage($this->_getFieldIdentifier("image"), $img); $image->setSize($size); if ($circular)$image->setCircular(); |
|
138 | 138 | return $image; |
139 | 139 | }); |
140 | 140 | return $this; |
141 | 141 | } |
142 | 142 | |
143 | - public function fieldAsFlag($index){ |
|
144 | - $this->setValueFunction($index,function($flag){ |
|
145 | - $flag=new HtmlFlag($this->_getFieldIdentifier("flag"),$flag); |
|
143 | + public function fieldAsFlag($index) { |
|
144 | + $this->setValueFunction($index, function($flag) { |
|
145 | + $flag=new HtmlFlag($this->_getFieldIdentifier("flag"), $flag); |
|
146 | 146 | return $flag; |
147 | 147 | }); |
148 | 148 | return $this; |
149 | 149 | } |
150 | 150 | |
151 | - public function fieldAsAvatar($index,$attributes=NULL){ |
|
152 | - return $this->_fieldAs(function($id,$name,$value){ |
|
153 | - $img=new HtmlImage($id,$value); |
|
151 | + public function fieldAsAvatar($index, $attributes=NULL) { |
|
152 | + return $this->_fieldAs(function($id, $name, $value) { |
|
153 | + $img=new HtmlImage($id, $value); |
|
154 | 154 | $img->asAvatar(); |
155 | 155 | return $img; |
156 | - }, $index,$attributes,"avatar"); |
|
156 | + }, $index, $attributes, "avatar"); |
|
157 | 157 | } |
158 | 158 | |
159 | - public function fieldAsRadio($index,$attributes=NULL){ |
|
160 | - return $this->_fieldAs(function($id,$name,$value) use($attributes){ |
|
161 | - $input= new HtmlRadio($id,$name,$value,$value); |
|
159 | + public function fieldAsRadio($index, $attributes=NULL) { |
|
160 | + return $this->_fieldAs(function($id, $name, $value) use($attributes){ |
|
161 | + $input=new HtmlRadio($id, $name, $value, $value); |
|
162 | 162 | return $this->_prepareFormFields($input, $name, $attributes); |
163 | - }, $index,$attributes,"radio"); |
|
163 | + }, $index, $attributes, "radio"); |
|
164 | 164 | } |
165 | 165 | |
166 | - public function fieldAsRadios($index,$elements=[],$attributes=NULL){ |
|
167 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($elements){ |
|
168 | - return HtmlFormFields::radios($name,$elements,$caption,$value); |
|
169 | - }, $index,$attributes,"radios"); |
|
166 | + public function fieldAsRadios($index, $elements=[], $attributes=NULL) { |
|
167 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($elements){ |
|
168 | + return HtmlFormFields::radios($name, $elements, $caption, $value); |
|
169 | + }, $index, $attributes, "radios"); |
|
170 | 170 | } |
171 | 171 | |
172 | - public function fieldAsInput($index,$attributes=NULL){ |
|
173 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes){ |
|
174 | - $input= new HtmlFormInput($id,$caption,"text",$value); |
|
172 | + public function fieldAsInput($index, $attributes=NULL) { |
|
173 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes){ |
|
174 | + $input=new HtmlFormInput($id, $caption, "text", $value); |
|
175 | 175 | return $this->_prepareFormFields($input, $name, $attributes); |
176 | - }, $index,$attributes,"input"); |
|
176 | + }, $index, $attributes, "input"); |
|
177 | 177 | } |
178 | 178 | |
179 | - public function fieldAsTextarea($index,$attributes=NULL){ |
|
180 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes){ |
|
181 | - $textarea=new HtmlFormTextarea($id,$caption,$value); |
|
179 | + public function fieldAsTextarea($index, $attributes=NULL) { |
|
180 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes){ |
|
181 | + $textarea=new HtmlFormTextarea($id, $caption, $value); |
|
182 | 182 | return $this->_prepareFormFields($textarea, $name, $attributes); |
183 | - }, $index,$attributes,"textarea"); |
|
183 | + }, $index, $attributes, "textarea"); |
|
184 | 184 | } |
185 | 185 | |
186 | - public function fieldAsHidden($index,$attributes=NULL){ |
|
187 | - if(!\is_array($attributes)){ |
|
186 | + public function fieldAsHidden($index, $attributes=NULL) { |
|
187 | + if (!\is_array($attributes)) { |
|
188 | 188 | $attributes=[]; |
189 | 189 | } |
190 | 190 | $attributes["inputType"]="hidden"; |
191 | - return $this->fieldAsInput($index,$attributes); |
|
191 | + return $this->fieldAsInput($index, $attributes); |
|
192 | 192 | } |
193 | 193 | |
194 | - public function fieldAsCheckbox($index,$attributes=NULL){ |
|
195 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($attributes){ |
|
196 | - $input=new HtmlFormCheckbox($id,$caption,$this->_instanceViewer->getIdentifier()); |
|
194 | + public function fieldAsCheckbox($index, $attributes=NULL) { |
|
195 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($attributes){ |
|
196 | + $input=new HtmlFormCheckbox($id, $caption, $this->_instanceViewer->getIdentifier()); |
|
197 | 197 | $input->setChecked(JString::isBooleanTrue($value)); |
198 | 198 | return $this->_prepareFormFields($input, $name, $attributes); |
199 | - }, $index,$attributes,"ck"); |
|
199 | + }, $index, $attributes, "ck"); |
|
200 | 200 | } |
201 | 201 | |
202 | - public function fieldAsDropDown($index,$elements=[],$multiple=false,$attributes=NULL){ |
|
203 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($elements,$multiple,$attributes){ |
|
204 | - $dd=new HtmlFormDropdown($id,$elements,$caption,$value); |
|
205 | - $dd->asSelect($name,$multiple); |
|
202 | + public function fieldAsDropDown($index, $elements=[], $multiple=false, $attributes=NULL) { |
|
203 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($elements, $multiple, $attributes){ |
|
204 | + $dd=new HtmlFormDropdown($id, $elements, $caption, $value); |
|
205 | + $dd->asSelect($name, $multiple); |
|
206 | 206 | return $this->_prepareFormFields($dd, $name, $attributes); |
207 | - }, $index,$attributes,"dd"); |
|
207 | + }, $index, $attributes, "dd"); |
|
208 | 208 | } |
209 | 209 | |
210 | - public function fieldAsMessage($index,$attributes=NULL){ |
|
211 | - return $this->_fieldAs(function($id,$name,$value,$caption){ |
|
212 | - $mess= new HtmlMessage("message-".$id,$caption); |
|
210 | + public function fieldAsMessage($index, $attributes=NULL) { |
|
211 | + return $this->_fieldAs(function($id, $name, $value, $caption) { |
|
212 | + $mess=new HtmlMessage("message-".$id, $caption); |
|
213 | 213 | $mess->addHeader($value); |
214 | 214 | return $mess; |
215 | - }, $index,$attributes,"message"); |
|
215 | + }, $index, $attributes, "message"); |
|
216 | 216 | } |
217 | 217 | |
218 | - public function fieldAsLink($index,$attributes=NULL){ |
|
219 | - return $this->_fieldAs(function($id,$name,$value,$caption){ |
|
220 | - $lnk= new HtmlLink("message-".$id,"#",$caption); |
|
218 | + public function fieldAsLink($index, $attributes=NULL) { |
|
219 | + return $this->_fieldAs(function($id, $name, $value, $caption) { |
|
220 | + $lnk=new HtmlLink("message-".$id, "#", $caption); |
|
221 | 221 | return $lnk; |
222 | - }, $index,$attributes,"link"); |
|
222 | + }, $index, $attributes, "link"); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /**Change fields type |
226 | 226 | * @param array $types an array or associative array $type=>$attributes |
227 | 227 | */ |
228 | - public function fieldsAs(array $types){ |
|
228 | + public function fieldsAs(array $types) { |
|
229 | 229 | $i=0; |
230 | - if(JArray::isAssociative($types)){ |
|
231 | - foreach ($types as $type=>$attributes){ |
|
232 | - if(\is_int($type)) |
|
233 | - $this->fieldAs($i++,$attributes,[]); |
|
234 | - else{ |
|
235 | - $type=preg_replace('/\d/', '', $type ); |
|
236 | - $this->fieldAs($i++,$type,$attributes); |
|
230 | + if (JArray::isAssociative($types)) { |
|
231 | + foreach ($types as $type=>$attributes) { |
|
232 | + if (\is_int($type)) |
|
233 | + $this->fieldAs($i++, $attributes, []); |
|
234 | + else { |
|
235 | + $type=preg_replace('/\d/', '', $type); |
|
236 | + $this->fieldAs($i++, $type, $attributes); |
|
237 | 237 | } |
238 | 238 | } |
239 | - }else{ |
|
240 | - foreach ($types as $type){ |
|
241 | - $this->fieldAs($i++,$type); |
|
239 | + } else { |
|
240 | + foreach ($types as $type) { |
|
241 | + $this->fieldAs($i++, $type); |
|
242 | 242 | } |
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
246 | - public function fieldAs($index,$type,$attributes=NULL){ |
|
246 | + public function fieldAs($index, $type, $attributes=NULL) { |
|
247 | 247 | $method="fieldAs".\ucfirst($type); |
248 | - if(\method_exists($this, $method)){ |
|
249 | - if(!\is_array($attributes)){ |
|
248 | + if (\method_exists($this, $method)) { |
|
249 | + if (!\is_array($attributes)) { |
|
250 | 250 | $attributes=[$index]; |
251 | - }else{ |
|
251 | + } else { |
|
252 | 252 | \array_unshift($attributes, $index); |
253 | 253 | } |
254 | - \call_user_func_array([$this,$method], $attributes); |
|
254 | + \call_user_func_array([$this, $method], $attributes); |
|
255 | 255 | } |
256 | 256 | } |
257 | 257 | |
258 | - public function fieldAsSubmit($index,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$attributes=NULL){ |
|
259 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($url,$responseElement,$cssStyle,$attributes){ |
|
260 | - $button=new HtmlButton($id,$caption,$cssStyle); |
|
261 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement,@$attributes["ajax"]); |
|
258 | + public function fieldAsSubmit($index, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $attributes=NULL) { |
|
259 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($url, $responseElement, $cssStyle, $attributes){ |
|
260 | + $button=new HtmlButton($id, $caption, $cssStyle); |
|
261 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement, @$attributes["ajax"]); |
|
262 | 262 | return $button; |
263 | - }, $index,$attributes,"submit"); |
|
263 | + }, $index, $attributes, "submit"); |
|
264 | 264 | } |
265 | 265 | |
266 | - public function fieldAsButton($index,$cssStyle=NULL,$attributes=NULL){ |
|
267 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($cssStyle){ |
|
268 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
266 | + public function fieldAsButton($index, $cssStyle=NULL, $attributes=NULL) { |
|
267 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($cssStyle){ |
|
268 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
269 | 269 | return $button; |
270 | - }, $index,$attributes,"button"); |
|
270 | + }, $index, $attributes, "button"); |
|
271 | 271 | } |
272 | 272 | } |
273 | 273 | \ No newline at end of file |
@@ -40,12 +40,12 @@ discard block |
||
40 | 40 | * @return \Ajax\semantic\html\collections\HtmlMenu |
41 | 41 | */ |
42 | 42 | public function setType($type="") { |
43 | - return $this->addToPropertyCtrl("class", $type, array ("","item","text" )); |
|
43 | + return $this->addToPropertyCtrl("class", $type, array("", "item", "text")); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | public function setActiveItem($index) { |
47 | 47 | $item=$this->getItem($index); |
48 | - if ($item !== null) { |
|
48 | + if ($item!==null) { |
|
49 | 49 | $item->addToProperty("class", "active"); |
50 | 50 | } |
51 | 51 | return $this; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | private function getItemToInsert($item) { |
55 | 55 | if ($item instanceof HtmlInput || $item instanceof HtmlImg || $item instanceof HtmlIcon || $item instanceof HtmlButtonGroups || $item instanceof HtmlButton || $item instanceof HtmlLabel) { |
56 | - $itemO=new HtmlMenuItem("item-" . $this->identifier . "-" . \sizeof($this->content) , $item); |
|
56 | + $itemO=new HtmlMenuItem("item-".$this->identifier."-".\sizeof($this->content), $item); |
|
57 | 57 | $item=$itemO; |
58 | 58 | } |
59 | 59 | return $item; |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | private function afterInsert($item) { |
63 | 63 | if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false) |
64 | - $item->addToPropertyCtrl("class", "item", array ("item" )); |
|
64 | + $item->addToPropertyCtrl("class", "item", array("item")); |
|
65 | 65 | else { |
66 | 66 | $this->setSecondary(); |
67 | 67 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | public function addItem($item) { |
78 | 78 | $number=$item; |
79 | 79 | $item=parent::addItem($this->getItemToInsert($item)); |
80 | - if(\is_int($number)) |
|
80 | + if (\is_int($number)) |
|
81 | 81 | $item->setProperty("data-page", $number); |
82 | 82 | return $this->afterInsert($item); |
83 | 83 | } |
@@ -95,15 +95,15 @@ discard block |
||
95 | 95 | |
96 | 96 | public function generateMenuAsItem($menu, $header=null) { |
97 | 97 | $count=$this->count(); |
98 | - $item=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "div"); |
|
98 | + $item=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "div"); |
|
99 | 99 | if (isset($header)) { |
100 | - $headerItem=new HtmlSemDoubleElement("item-header-" . $this->identifier . "-" . $count, "div", "header"); |
|
100 | + $headerItem=new HtmlSemDoubleElement("item-header-".$this->identifier."-".$count, "div", "header"); |
|
101 | 101 | $headerItem->setContent($header); |
102 | 102 | $item->addContent($headerItem); |
103 | 103 | $this->_itemHeader=$headerItem; |
104 | 104 | } |
105 | - if(\is_array($menu)){ |
|
106 | - $menu=new HtmlMenu("menu-" . $this->identifier . "-" . $count,$menu); |
|
105 | + if (\is_array($menu)) { |
|
106 | + $menu=new HtmlMenu("menu-".$this->identifier."-".$count, $menu); |
|
107 | 107 | } |
108 | 108 | $menu->setClass("menu"); |
109 | 109 | $item->addContent($menu); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $value=new HtmlSemDoubleElement($identifier, "a", "browse item", $value); |
119 | 119 | $value->addContent(new HtmlIcon("", "dropdown")); |
120 | 120 | $value=$this->addItem($value); |
121 | - $popup=new HtmlPopup($value, "popup-" . $this->identifier . "-" . $this->count(), $content); |
|
121 | + $popup=new HtmlPopup($value, "popup-".$this->identifier."-".$this->count(), $content); |
|
122 | 122 | $popup->setFlowing()->setPosition("bottom left")->setOn("click"); |
123 | 123 | $this->wrap("", $popup); |
124 | 124 | return $popup; |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | public function addDropdownAsItem($value, $items=NULL) { |
128 | 128 | $dd=$value; |
129 | 129 | if (\is_string($value)) { |
130 | - $dd=new HtmlDropdown("dropdown-" . $this->identifier . "-" . $this->count(), $value, $items); |
|
130 | + $dd=new HtmlDropdown("dropdown-".$this->identifier."-".$this->count(), $value, $items); |
|
131 | 131 | } |
132 | 132 | $this->addItem($dd); |
133 | 133 | return $dd; |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @see \Ajax\common\html\html5\HtmlCollection::createItem() |
141 | 141 | */ |
142 | 142 | protected function createItem($value) { |
143 | - $itemO=new HtmlMenuItem($this->identifier."-item-" . \sizeof($this->content),""); |
|
143 | + $itemO=new HtmlMenuItem($this->identifier."-item-".\sizeof($this->content), ""); |
|
144 | 144 | $itemO->setTagName("a"); |
145 | 145 | $itemO->setContent($value); |
146 | 146 | return $itemO; |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | } |
152 | 152 | |
153 | 153 | public function setSecondary($value=true) { |
154 | - if($value) |
|
154 | + if ($value) |
|
155 | 155 | $this->addToProperty("class", "secondary"); |
156 | 156 | else |
157 | 157 | $this->removePropertyValue("class", "secondary"); |
@@ -159,28 +159,28 @@ discard block |
||
159 | 159 | } |
160 | 160 | |
161 | 161 | public function setVertical() { |
162 | - return $this->addToPropertyCtrl("class", "vertical", array ("vertical" )); |
|
162 | + return $this->addToPropertyCtrl("class", "vertical", array("vertical")); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | public function setPosition($value="right") { |
166 | - return $this->addToPropertyCtrl("class", $value, array ("right","left" )); |
|
166 | + return $this->addToPropertyCtrl("class", $value, array("right", "left")); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | public function setPointing($value=Direction::NONE) { |
170 | - return $this->addToPropertyCtrl("class", $value . " pointing", Direction::getConstantValues("pointing")); |
|
170 | + return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing")); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | public function asTab($vertical=false) { |
174 | - $this->apply(function (HtmlDoubleElement &$item) { |
|
174 | + $this->apply(function(HtmlDoubleElement&$item) { |
|
175 | 175 | $item->setTagName("a"); |
176 | 176 | }); |
177 | - if ($vertical === true) |
|
177 | + if ($vertical===true) |
|
178 | 178 | $this->setVertical(); |
179 | 179 | return $this->addToProperty("class", "tabular"); |
180 | 180 | } |
181 | 181 | |
182 | 182 | public function asPagination() { |
183 | - $this->apply(function (HtmlDoubleElement &$item) { |
|
183 | + $this->apply(function(HtmlDoubleElement&$item) { |
|
184 | 184 | $item->setTagName("a"); |
185 | 185 | }); |
186 | 186 | return $this->addToProperty("class", "pagination"); |
@@ -217,10 +217,10 @@ discard block |
||
217 | 217 | */ |
218 | 218 | public function setWidth($width) { |
219 | 219 | if (\is_int($width)) { |
220 | - $width=Wide::getConstants()["W" . $width]; |
|
220 | + $width=Wide::getConstants()["W".$width]; |
|
221 | 221 | } |
222 | 222 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
223 | - return $this->addToPropertyCtrl("class", "item", array ("item" )); |
|
223 | + return $this->addToPropertyCtrl("class", "item", array("item")); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | public function addImage($identifier, $src="", $alt="") { |
@@ -235,14 +235,14 @@ discard block |
||
235 | 235 | return $this->_itemHeader; |
236 | 236 | } |
237 | 237 | |
238 | - public function setHasContainer(){ |
|
239 | - return $this->wrapContent("<div class='ui container'>","</div>"); |
|
238 | + public function setHasContainer() { |
|
239 | + return $this->wrapContent("<div class='ui container'>", "</div>"); |
|
240 | 240 | } |
241 | 241 | |
242 | - public function run(JsUtils $js){ |
|
243 | - if($this->identifier!=="" && !isset($this->_bsComponent)) |
|
244 | - $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false); |
|
245 | - $result= parent::run($js); |
|
242 | + public function run(JsUtils $js) { |
|
243 | + if ($this->identifier!=="" && !isset($this->_bsComponent)) |
|
244 | + $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}', false, false); |
|
245 | + $result=parent::run($js); |
|
246 | 246 | return $result->setItemSelector(".item"); |
247 | 247 | } |
248 | 248 | } |
249 | 249 | \ No newline at end of file |
@@ -60,9 +60,9 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | private function afterInsert($item) { |
63 | - if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false) |
|
64 | - $item->addToPropertyCtrl("class", "item", array ("item" )); |
|
65 | - else { |
|
63 | + if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false) { |
|
64 | + $item->addToPropertyCtrl("class", "item", array ("item" )); |
|
65 | + } else { |
|
66 | 66 | $this->setSecondary(); |
67 | 67 | } |
68 | 68 | return $item; |
@@ -77,8 +77,9 @@ discard block |
||
77 | 77 | public function addItem($item) { |
78 | 78 | $number=$item; |
79 | 79 | $item=parent::addItem($this->getItemToInsert($item)); |
80 | - if(\is_int($number)) |
|
81 | - $item->setProperty("data-page", $number); |
|
80 | + if(\is_int($number)) { |
|
81 | + $item->setProperty("data-page", $number); |
|
82 | + } |
|
82 | 83 | return $this->afterInsert($item); |
83 | 84 | } |
84 | 85 | |
@@ -151,10 +152,11 @@ discard block |
||
151 | 152 | } |
152 | 153 | |
153 | 154 | public function setSecondary($value=true) { |
154 | - if($value) |
|
155 | - $this->addToProperty("class", "secondary"); |
|
156 | - else |
|
157 | - $this->removePropertyValue("class", "secondary"); |
|
155 | + if($value) { |
|
156 | + $this->addToProperty("class", "secondary"); |
|
157 | + } else { |
|
158 | + $this->removePropertyValue("class", "secondary"); |
|
159 | + } |
|
158 | 160 | return $this; |
159 | 161 | } |
160 | 162 | |
@@ -174,8 +176,9 @@ discard block |
||
174 | 176 | $this->apply(function (HtmlDoubleElement &$item) { |
175 | 177 | $item->setTagName("a"); |
176 | 178 | }); |
177 | - if ($vertical === true) |
|
178 | - $this->setVertical(); |
|
179 | + if ($vertical === true) { |
|
180 | + $this->setVertical(); |
|
181 | + } |
|
179 | 182 | return $this->addToProperty("class", "tabular"); |
180 | 183 | } |
181 | 184 | |
@@ -204,10 +207,11 @@ discard block |
||
204 | 207 | */ |
205 | 208 | public function fromDatabaseObject($object, $function) { |
206 | 209 | $return=$function($object); |
207 | - if (\is_array($return)) |
|
208 | - $this->addItems($return); |
|
209 | - else |
|
210 | - $this->addItem($return); |
|
210 | + if (\is_array($return)) { |
|
211 | + $this->addItems($return); |
|
212 | + } else { |
|
213 | + $this->addItem($return); |
|
214 | + } |
|
211 | 215 | } |
212 | 216 | |
213 | 217 | /** |
@@ -240,8 +244,9 @@ discard block |
||
240 | 244 | } |
241 | 245 | |
242 | 246 | public function run(JsUtils $js){ |
243 | - if($this->identifier!=="" && !isset($this->_bsComponent)) |
|
244 | - $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false); |
|
247 | + if($this->identifier!=="" && !isset($this->_bsComponent)) { |
|
248 | + $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false); |
|
249 | + } |
|
245 | 250 | $result= parent::run($js); |
246 | 251 | return $result->setItemSelector(".item"); |
247 | 252 | } |
@@ -27,10 +27,10 @@ discard block |
||
27 | 27 | |
28 | 28 | public function __construct($identifier, $rowCount, $colCount) { |
29 | 29 | parent::__construct($identifier, "table", "ui table"); |
30 | - $this->content=array (); |
|
30 | + $this->content=array(); |
|
31 | 31 | $this->setRowCount($rowCount, $colCount); |
32 | - $this->_variations=[ Variation::CELLED,Variation::PADDED,Variation::COMPACT ]; |
|
33 | - $this->_compileParts=["thead","tbody","tfoot"]; |
|
32 | + $this->_variations=[Variation::CELLED, Variation::PADDED, Variation::COMPACT]; |
|
33 | + $this->_compileParts=["thead", "tbody", "tfoot"]; |
|
34 | 34 | $this->_afterCompileEvents=[]; |
35 | 35 | } |
36 | 36 | |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | * @return HtmlTableContent |
49 | 49 | */ |
50 | 50 | public function getPart($key) { |
51 | - if (\array_key_exists($key, $this->content) === false) { |
|
51 | + if (\array_key_exists($key, $this->content)===false) { |
|
52 | 52 | $this->content[$key]=new HtmlTableContent("", $key); |
53 | - if ($key !== "tbody") { |
|
53 | + if ($key!=="tbody") { |
|
54 | 54 | $this->content[$key]->setRowCount(1, $this->_colCount); |
55 | 55 | } |
56 | 56 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @return boolean |
96 | 96 | */ |
97 | 97 | public function hasPart($key) { |
98 | - return \array_key_exists($key, $this->content) === true; |
|
98 | + return \array_key_exists($key, $this->content)===true; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | |
231 | 231 | private function colAlign($colIndex, $function) { |
232 | 232 | if (\is_array($colIndex)) { |
233 | - foreach ( $colIndex as $cIndex ) { |
|
233 | + foreach ($colIndex as $cIndex) { |
|
234 | 234 | $this->colAlign($cIndex, $function); |
235 | 235 | } |
236 | 236 | } else { |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | * @see HtmlSemDoubleElement::compile() |
292 | 292 | */ |
293 | 293 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
294 | - if(\sizeof($this->_compileParts)<3){ |
|
294 | + if (\sizeof($this->_compileParts)<3) { |
|
295 | 295 | $this->_template="%content%"; |
296 | 296 | $this->refresh(); |
297 | 297 | } |
@@ -301,9 +301,9 @@ discard block |
||
301 | 301 | |
302 | 302 | protected function compile_once(JsUtils $js=NULL, &$view=NULL) { |
303 | 303 | if ($this->propertyContains("class", "sortable")) { |
304 | - $this->addEvent("execute", "$('#" . $this->identifier . "').tablesort().data('tablesort').sort($('th.default-sort'));"); |
|
304 | + $this->addEvent("execute", "$('#".$this->identifier."').tablesort().data('tablesort').sort($('th.default-sort'));"); |
|
305 | 305 | } |
306 | - if(isset($this->_activeRowSelector)){ |
|
306 | + if (isset($this->_activeRowSelector)) { |
|
307 | 307 | $this->_activeRowSelector->compile(); |
308 | 308 | } |
309 | 309 | } |
@@ -317,13 +317,13 @@ discard block |
||
317 | 317 | public function fromDatabaseObject($object, $function) { |
318 | 318 | $result=$function($object); |
319 | 319 | if (\is_array($result)) { |
320 | - $result= $this->addRow($function($object)); |
|
320 | + $result=$this->addRow($function($object)); |
|
321 | 321 | } else { |
322 | - $result= $this->getBody()->_addRow($result); |
|
322 | + $result=$this->getBody()->_addRow($result); |
|
323 | 323 | } |
324 | - if(isset($this->_afterCompileEvents["onNewRow"])){ |
|
325 | - if(\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
326 | - $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
324 | + if (isset($this->_afterCompileEvents["onNewRow"])) { |
|
325 | + if (\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
326 | + $this->_afterCompileEvents["onNewRow"]($result, $object); |
|
327 | 327 | } |
328 | 328 | return $result; |
329 | 329 | } |
@@ -338,14 +338,14 @@ discard block |
||
338 | 338 | return $this; |
339 | 339 | } |
340 | 340 | |
341 | - public function refresh(){ |
|
341 | + public function refresh() { |
|
342 | 342 | $this->_footer=$this->getFooter(); |
343 | 343 | $this->addEvent("execute", '$("#'.$this->identifier.' tfoot").replaceWith("'.\addslashes($this->_footer).'");'); |
344 | 344 | } |
345 | 345 | |
346 | - public function run(JsUtils $js){ |
|
347 | - $result= parent::run($js); |
|
348 | - if(isset($this->_footer)) |
|
346 | + public function run(JsUtils $js) { |
|
347 | + $result=parent::run($js); |
|
348 | + if (isset($this->_footer)) |
|
349 | 349 | $this->_footer->run($js); |
350 | 350 | return $result; |
351 | 351 | } |
@@ -368,17 +368,17 @@ discard block |
||
368 | 368 | * @param boolean $multiple |
369 | 369 | * @return HtmlTable |
370 | 370 | */ |
371 | - public function setActiveRowSelector($class="active",$event="click",$multiple=false){ |
|
372 | - $this->_activeRowSelector=new ActiveRow($this,$class,$event,$multiple); |
|
371 | + public function setActiveRowSelector($class="active", $event="click", $multiple=false) { |
|
372 | + $this->_activeRowSelector=new ActiveRow($this, $class, $event, $multiple); |
|
373 | 373 | return $this; |
374 | 374 | } |
375 | 375 | |
376 | - public function hideColumn($colIndex){ |
|
377 | - if($this->hasPart("thead")){ |
|
376 | + public function hideColumn($colIndex) { |
|
377 | + if ($this->hasPart("thead")) { |
|
378 | 378 | $this->getHeader()->hideColumn($colIndex); |
379 | 379 | } |
380 | 380 | $this->getBody()->hideColumn($colIndex); |
381 | - if($this->hasPart("tfoot")){ |
|
381 | + if ($this->hasPart("tfoot")) { |
|
382 | 382 | $this->getFooter()->hideColumn($colIndex); |
383 | 383 | } |
384 | 384 | return $this; |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * |
12 | 12 | */ |
13 | 13 | class HtmlTableContent extends HtmlSemCollection { |
14 | - protected $_tdTagNames=[ "thead" => "th","tbody" => "td","tfoot" => "th" ]; |
|
14 | + protected $_tdTagNames=["thead" => "th", "tbody" => "td", "tfoot" => "th"]; |
|
15 | 15 | |
16 | 16 | /** |
17 | 17 | * |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function setRowCount($rowCount, $colCount) { |
36 | 36 | $count=$this->count(); |
37 | - for($i=$count; $i < $rowCount; $i++) { |
|
37 | + for ($i=$count; $i<$rowCount; $i++) { |
|
38 | 38 | $this->addItem($colCount); |
39 | 39 | } |
40 | 40 | return $this; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $tr=new HtmlTR("", $value); |
57 | 57 | $tr->setContainer($this, $count); |
58 | 58 | $tr->setTdTagName($this->_tdTagNames[$this->tagName]); |
59 | - if (isset($value) === true) { |
|
59 | + if (isset($value)===true) { |
|
60 | 60 | $tr->setColCount($value); |
61 | 61 | } |
62 | 62 | return $tr; |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public function setCellValue($row, $col, $value="") { |
116 | 116 | $cell=$this->getCell($row, $col); |
117 | - if (isset($cell) === true) { |
|
117 | + if (isset($cell)===true) { |
|
118 | 118 | $cell->setValue($value); |
119 | 119 | } |
120 | 120 | return $this; |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @param mixed $values |
126 | 126 | */ |
127 | 127 | public function setValues($values=array()) { |
128 | - return $this->_addOrSetValues($values, function($row,$_values){$row->setValues($_values);}); |
|
128 | + return $this->_addOrSetValues($values, function($row, $_values) {$row->setValues($_values); }); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | * @param mixed $values |
134 | 134 | */ |
135 | 135 | public function addValues($values=array()) { |
136 | - return $this->_addOrSetValues($values, function($row,$_values){$row->addValues($_values);}); |
|
136 | + return $this->_addOrSetValues($values, function($row, $_values) {$row->addValues($_values); }); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | /** |
@@ -141,21 +141,21 @@ discard block |
||
141 | 141 | * @param mixed $values |
142 | 142 | * @param callable $callback |
143 | 143 | */ |
144 | - protected function _addOrSetValues($values,$callback) { |
|
144 | + protected function _addOrSetValues($values, $callback) { |
|
145 | 145 | $count=$this->count(); |
146 | 146 | $isArray=true; |
147 | 147 | if (!\is_array($values)) { |
148 | 148 | $values=\array_fill(0, $count, $values); |
149 | 149 | $isArray=false; |
150 | 150 | } |
151 | - if (JArray::dimension($values) == 1 && $isArray) |
|
152 | - $values=[ $values ]; |
|
151 | + if (JArray::dimension($values)==1 && $isArray) |
|
152 | + $values=[$values]; |
|
153 | 153 | |
154 | 154 | $count=\min(\sizeof($values), $count); |
155 | 155 | |
156 | - for($i=0; $i < $count; $i++) { |
|
156 | + for ($i=0; $i<$count; $i++) { |
|
157 | 157 | $row=$this->content[$i]; |
158 | - $callback($row,$values[$i]); |
|
158 | + $callback($row, $values[$i]); |
|
159 | 159 | } |
160 | 160 | return $this; |
161 | 161 | } |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | $values=\array_fill(0, $count, $values); |
167 | 167 | } |
168 | 168 | $count=\min(\sizeof($values), $count); |
169 | - for($i=0; $i < $count; $i++) { |
|
169 | + for ($i=0; $i<$count; $i++) { |
|
170 | 170 | $this->getCell($i, $colIndex)->setValue($values[$i]); |
171 | 171 | } |
172 | 172 | return $this; |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | |
175 | 175 | public function addColVariations($colIndex, $variations=array()) { |
176 | 176 | $count=$this->count(); |
177 | - for($i=0; $i < $count; $i++) { |
|
177 | + for ($i=0; $i<$count; $i++) { |
|
178 | 178 | $this->getCell($i, $colIndex)->addVariations($variations); |
179 | 179 | } |
180 | 180 | return $this; |
@@ -191,9 +191,9 @@ discard block |
||
191 | 191 | |
192 | 192 | private function colAlign($colIndex, $function) { |
193 | 193 | $count=$this->count(); |
194 | - for($i=0; $i < $count; $i++) { |
|
194 | + for ($i=0; $i<$count; $i++) { |
|
195 | 195 | $index=$this->content[$i]->getColPosition($colIndex); |
196 | - if ($index !== NULL) |
|
196 | + if ($index!==NULL) |
|
197 | 197 | $this->getCell($i, $index)->$function(); |
198 | 198 | } |
199 | 199 | return $this; |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | */ |
226 | 226 | public function getColCount() { |
227 | 227 | $result=0; |
228 | - if ($this->count() > 0) |
|
228 | + if ($this->count()>0) |
|
229 | 229 | $result=$this->getItem(0)->getColCount(); |
230 | 230 | return $result; |
231 | 231 | } |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | public function delete($rowIndex, $colIndex=NULL) { |
240 | 240 | if (isset($colIndex)) { |
241 | 241 | $row=$this->getItem($rowIndex); |
242 | - if (isset($row) === true) { |
|
242 | + if (isset($row)===true) { |
|
243 | 243 | $row->delete($colIndex); |
244 | 244 | } |
245 | 245 | } else { |
@@ -272,17 +272,17 @@ discard block |
||
272 | 272 | */ |
273 | 273 | public function conditionalCellFormat($callback, $format) { |
274 | 274 | $rows=$this->content; |
275 | - foreach ( $rows as $row ) { |
|
275 | + foreach ($rows as $row) { |
|
276 | 276 | $row->conditionalCellFormat($callback, $format); |
277 | 277 | } |
278 | 278 | return $this; |
279 | 279 | } |
280 | 280 | |
281 | - public function conditionalColFormat($colIndex,$callback,$format){ |
|
281 | + public function conditionalColFormat($colIndex, $callback, $format) { |
|
282 | 282 | $rows=$this->content; |
283 | - foreach ( $rows as $row ) { |
|
283 | + foreach ($rows as $row) { |
|
284 | 284 | $cell=$row->getItem($colIndex); |
285 | - $cell->conditionnalCellFormat($callback,$format); |
|
285 | + $cell->conditionnalCellFormat($callback, $format); |
|
286 | 286 | } |
287 | 287 | return $this; |
288 | 288 | } |
@@ -294,17 +294,17 @@ discard block |
||
294 | 294 | */ |
295 | 295 | public function conditionalRowFormat($callback, $format) { |
296 | 296 | $rows=$this->content; |
297 | - foreach ( $rows as $row ) { |
|
297 | + foreach ($rows as $row) { |
|
298 | 298 | $row->conditionalRowFormat($callback, $format); |
299 | 299 | } |
300 | 300 | return $this; |
301 | 301 | } |
302 | 302 | |
303 | - public function hideColumn($colIndex){ |
|
303 | + public function hideColumn($colIndex) { |
|
304 | 304 | $rows=$this->content; |
305 | - foreach ( $rows as $row ) { |
|
305 | + foreach ($rows as $row) { |
|
306 | 306 | $cell=$row->getItem($colIndex); |
307 | - $cell->addToProperty("style","display:none;"); |
|
307 | + $cell->addToProperty("style", "display:none;"); |
|
308 | 308 | } |
309 | 309 | return $this; |
310 | 310 | } |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | */ |
316 | 316 | public function applyCells($callback) { |
317 | 317 | $rows=$this->content; |
318 | - foreach ( $rows as $row ) { |
|
318 | + foreach ($rows as $row) { |
|
319 | 319 | $row->applyCells($callback); |
320 | 320 | } |
321 | 321 | return $this; |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | */ |
328 | 328 | public function applyRows($callback) { |
329 | 329 | $rows=$this->content; |
330 | - foreach ( $rows as $row ) { |
|
330 | + foreach ($rows as $row) { |
|
331 | 331 | $row->apply($callback); |
332 | 332 | } |
333 | 333 | return $this; |