@@ -3,11 +3,11 @@ |
||
3 | 3 | namespace Ajax\common\html\html5; |
4 | 4 | |
5 | 5 | class HtmlUtils { |
6 | - public static function javascriptInclude($url){ |
|
6 | + public static function javascriptInclude($url) { |
|
7 | 7 | return '<script src="'.$url.'"></script>'; |
8 | 8 | } |
9 | 9 | |
10 | - public static function stylesheetInclude($url){ |
|
10 | + public static function stylesheetInclude($url) { |
|
11 | 11 | return '<link rel="stylesheet" type="text/css" href="'.$url.'">'; |
12 | 12 | } |
13 | 13 | } |
@@ -89,8 +89,9 @@ discard block |
||
89 | 89 | * @return \Ajax\bootstrap\html\HtmlPanel default : "panel-default" |
90 | 90 | */ |
91 | 91 | public function setStyle($cssStyle) { |
92 | - if (!JString::startsWith($cssStyle, "panel")) |
|
93 | - $cssStyle="panel".$cssStyle; |
|
92 | + if (!JString::startsWith($cssStyle, "panel")) { |
|
93 | + $cssStyle="panel".$cssStyle; |
|
94 | + } |
|
94 | 95 | return $this->addToPropertyCtrl("class", $cssStyle, CssRef::Styles("panel")); |
95 | 96 | } |
96 | 97 | |
@@ -132,7 +133,8 @@ discard block |
||
132 | 133 | * @return $this default : false |
133 | 134 | */ |
134 | 135 | public function show($value) { |
135 | - if ($this->_collapsable) |
|
136 | - $this->_showOnStartup=$value; |
|
136 | + if ($this->_collapsable) { |
|
137 | + $this->_showOnStartup=$value; |
|
138 | + } |
|
137 | 139 | } |
138 | 140 | } |
@@ -9,25 +9,25 @@ |
||
9 | 9 | class HtmlMenuItem extends HtmlSemDoubleElement { |
10 | 10 | use MenuItemTrait; |
11 | 11 | public function __construct($identifier, $content) { |
12 | - parent::__construct($identifier,"div","item",$content); |
|
12 | + parent::__construct($identifier, "div", "item", $content); |
|
13 | 13 | } |
14 | 14 | |
15 | - protected function initContent($content){ |
|
16 | - if(\is_array($content)){ |
|
17 | - if(JArray::isAssociative($content)===false){ |
|
15 | + protected function initContent($content) { |
|
16 | + if (\is_array($content)) { |
|
17 | + if (JArray::isAssociative($content)===false) { |
|
18 | 18 | $icon=@$content[0]; |
19 | 19 | $title=@$content[1]; |
20 | - }else{ |
|
20 | + } else { |
|
21 | 21 | $icon=@$content["icon"]; |
22 | 22 | $title=@$content["title"]; |
23 | 23 | } |
24 | - if(isset($icon)){ |
|
24 | + if (isset($icon)) { |
|
25 | 25 | $this->addIcon($icon); |
26 | 26 | } |
27 | - if(isset($title)){ |
|
27 | + if (isset($title)) { |
|
28 | 28 | $this->setTitle($title); |
29 | 29 | } |
30 | - }else{ |
|
30 | + } else { |
|
31 | 31 | $this->setContent($content); |
32 | 32 | } |
33 | 33 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | if(JArray::isAssociative($content)===false){ |
18 | 18 | $icon=@$content[0]; |
19 | 19 | $title=@$content[1]; |
20 | - }else{ |
|
20 | + } else{ |
|
21 | 21 | $icon=@$content["icon"]; |
22 | 22 | $title=@$content["title"]; |
23 | 23 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | if(isset($title)){ |
28 | 28 | $this->setTitle($title); |
29 | 29 | } |
30 | - }else{ |
|
30 | + } else{ |
|
31 | 31 | $this->setContent($content); |
32 | 32 | } |
33 | 33 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | /** |
25 | 25 | * @return HtmlIcon |
26 | 26 | */ |
27 | - public function getItem($index){ |
|
27 | + public function getItem($index) { |
|
28 | 28 | return parent::getItem($index); |
29 | 29 | } |
30 | 30 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $icon=JArray::getValue($value, "icon", 0); |
35 | 35 | $size=JArray::getValue($value, "size", 1); |
36 | 36 | } |
37 | - $iconO=new HtmlIcon("icon-" . $this->identifier, $icon); |
|
37 | + $iconO=new HtmlIcon("icon-".$this->identifier, $icon); |
|
38 | 38 | if (isset($size)) { |
39 | 39 | $iconO->setSize($size); |
40 | 40 | } |
@@ -42,15 +42,15 @@ discard block |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | protected function createCondition($value) { |
45 | - return ($value instanceof HtmlIcon) === false; |
|
45 | + return ($value instanceof HtmlIcon)===false; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | public function getIcon($index) { |
49 | 49 | return $this->content[$index]; |
50 | 50 | } |
51 | 51 | |
52 | - public function run(JsUtils $js){ |
|
53 | - $result= parent::run($js); |
|
52 | + public function run(JsUtils $js) { |
|
53 | + $result=parent::run($js); |
|
54 | 54 | return $result->setItemSelector("i"); |
55 | 55 | } |
56 | 56 | |
@@ -59,8 +59,8 @@ discard block |
||
59 | 59 | return $this; |
60 | 60 | } |
61 | 61 | |
62 | - public static function corner($mainIcon,$cornerIcon,$size="huge"){ |
|
63 | - $icons=new HtmlIconGroups("icons",[$mainIcon,$cornerIcon],$size); |
|
62 | + public static function corner($mainIcon, $cornerIcon, $size="huge") { |
|
63 | + $icons=new HtmlIconGroups("icons", [$mainIcon, $cornerIcon], $size); |
|
64 | 64 | return $icons->toCorner(1); |
65 | 65 | } |
66 | 66 | } |
@@ -29,16 +29,16 @@ discard block |
||
29 | 29 | $this->_colSizing=false; |
30 | 30 | $this->setWide($numCols); |
31 | 31 | } |
32 | - if($createCols) |
|
32 | + if ($createCols) |
|
33 | 33 | $this->setRowsCount($numRows, $numCols); |
34 | 34 | } |
35 | 35 | |
36 | 36 | public function asSegment() { |
37 | - return $this->addToPropertyCtrl("class", "segment", array ("segment" )); |
|
37 | + return $this->addToPropertyCtrl("class", "segment", array("segment")); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function asContainer() { |
41 | - return $this->addToPropertyCtrl("class", "container", array ("container" )); |
|
41 | + return $this->addToPropertyCtrl("class", "container", array("container")); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -46,10 +46,10 @@ discard block |
||
46 | 46 | * @param int $wide |
47 | 47 | */ |
48 | 48 | public function setWide($wide) { |
49 | - if(isset(Wide::getConstants()["W" . $wide])){ |
|
50 | - $wide=Wide::getConstants()["W" . $wide]; |
|
49 | + if (isset(Wide::getConstants()["W".$wide])) { |
|
50 | + $wide=Wide::getConstants()["W".$wide]; |
|
51 | 51 | $this->addToPropertyCtrl("class", $wide, Wide::getConstants()); |
52 | - return $this->addToPropertyCtrl("class", "column", array ("column" )); |
|
52 | + return $this->addToPropertyCtrl("class", "column", array("column")); |
|
53 | 53 | } |
54 | 54 | return $this; |
55 | 55 | } |
@@ -69,9 +69,9 @@ discard block |
||
69 | 69 | * @return mixed |
70 | 70 | */ |
71 | 71 | public function addRow($colsCount=NULL) { |
72 | - $rowCount=$this->rowCount() + 1; |
|
72 | + $rowCount=$this->rowCount()+1; |
|
73 | 73 | $this->setRowsCount($rowCount, $colsCount, true); |
74 | - return $this->content[$rowCount - 1]; |
|
74 | + return $this->content[$rowCount-1]; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | * @return mixed|\Ajax\semantic\html\collections\HtmlGrid |
81 | 81 | */ |
82 | 82 | public function addCol($width=NULL) { |
83 | - $colCount=$this->colCount() + 1; |
|
83 | + $colCount=$this->colCount()+1; |
|
84 | 84 | $this->setColsCount($colCount, true, $width); |
85 | 85 | if ($this->hasOnlyCols($this->count())) |
86 | - return $this->content[$colCount - 1]; |
|
86 | + return $this->content[$colCount-1]; |
|
87 | 87 | return $this; |
88 | 88 | } |
89 | 89 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @return \Ajax\semantic\html\collections\HtmlGrid |
94 | 94 | */ |
95 | 95 | public function addCols($sizes=array()) { |
96 | - foreach ( $sizes as $size ) { |
|
96 | + foreach ($sizes as $size) { |
|
97 | 97 | $this->addCol($size); |
98 | 98 | } |
99 | 99 | return $this; |
@@ -107,19 +107,19 @@ discard block |
||
107 | 107 | */ |
108 | 108 | public function setRowsCount($rowsCount, $colsCount=NULL, $force=false) { |
109 | 109 | $count=$this->count(); |
110 | - if ($rowsCount < 2 && $force === false) { |
|
111 | - for($i=$count; $i < $colsCount; $i++) { |
|
112 | - $this->addItem(new HtmlGridCol("col-" . $this->identifier . "-" . $i)); |
|
110 | + if ($rowsCount<2 && $force===false) { |
|
111 | + for ($i=$count; $i<$colsCount; $i++) { |
|
112 | + $this->addItem(new HtmlGridCol("col-".$this->identifier."-".$i)); |
|
113 | 113 | } |
114 | 114 | } else { |
115 | 115 | if ($this->hasOnlyCols($count)) { |
116 | 116 | $tmpContent=$this->content; |
117 | 117 | $item=$this->addItem($colsCount); |
118 | 118 | $item->setContent($tmpContent); |
119 | - $this->content=array (); |
|
119 | + $this->content=array(); |
|
120 | 120 | $count=1; |
121 | 121 | } |
122 | - for($i=$count; $i < $rowsCount; $i++) { |
|
122 | + for ($i=$count; $i<$rowsCount; $i++) { |
|
123 | 123 | $this->addItem($colsCount); |
124 | 124 | } |
125 | 125 | } |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | } |
128 | 128 | |
129 | 129 | protected function hasOnlyCols($count) { |
130 | - return $count > 0 && $this->content[0] instanceof HtmlGridCol; |
|
130 | + return $count>0 && $this->content[0] instanceof HtmlGridCol; |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -141,14 +141,14 @@ discard block |
||
141 | 141 | if (isset($width)===false) { |
142 | 142 | $this->setWide($numCols); |
143 | 143 | } |
144 | - if ($toCreate === true) { |
|
144 | + if ($toCreate===true) { |
|
145 | 145 | $count=$this->count(); |
146 | - if ($count == 0 || $this->hasOnlyCols($count)) { |
|
147 | - for($i=$count; $i < $numCols; $i++) { |
|
148 | - $this->addItem(new HtmlGridCol("col-" . $this->identifier . "-" . $i, $width)); |
|
146 | + if ($count==0 || $this->hasOnlyCols($count)) { |
|
147 | + for ($i=$count; $i<$numCols; $i++) { |
|
148 | + $this->addItem(new HtmlGridCol("col-".$this->identifier."-".$i, $width)); |
|
149 | 149 | } |
150 | 150 | } else { |
151 | - for($i=0; $i < $count; $i++) { |
|
151 | + for ($i=0; $i<$count; $i++) { |
|
152 | 152 | $this->getItem($i)->setColsCount($numCols); |
153 | 153 | } |
154 | 154 | } |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | /** |
169 | 169 | * @return HtmlGridRow |
170 | 170 | */ |
171 | - public function getItem($index){ |
|
171 | + public function getItem($index) { |
|
172 | 172 | return parent::getItem($index); |
173 | 173 | } |
174 | 174 | |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | $count=$this->count(); |
192 | 192 | if ($this->hasOnlyCols($count)) |
193 | 193 | return $count; |
194 | - if ($count > 0) |
|
194 | + if ($count>0) |
|
195 | 195 | return $this->getItem(0)->count(); |
196 | 196 | return 0; |
197 | 197 | } |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | * @return HtmlGridCol|HtmlGridRow |
204 | 204 | */ |
205 | 205 | public function getCell($row, $col) { |
206 | - if ($row < 2 && $this->hasOnlyCols($this->count())) |
|
206 | + if ($row<2 && $this->hasOnlyCols($this->count())) |
|
207 | 207 | return $this->getItem($col); |
208 | 208 | $rowO=$this->getItem($row); |
209 | 209 | if (isset($rowO)) { |
@@ -218,8 +218,8 @@ discard block |
||
218 | 218 | * @return \Ajax\semantic\html\collections\HtmlGrid |
219 | 219 | */ |
220 | 220 | public function setDivided($vertically=false) { |
221 | - $value=($vertically === true) ? "vertically divided" : "divided"; |
|
222 | - return $this->addToPropertyCtrl("class", $value, array ("divided" )); |
|
221 | + $value=($vertically===true) ? "vertically divided" : "divided"; |
|
222 | + return $this->addToPropertyCtrl("class", $value, array("divided")); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | /** |
@@ -228,15 +228,15 @@ discard block |
||
228 | 228 | * @return \Ajax\semantic\html\collections\HtmlGrid |
229 | 229 | */ |
230 | 230 | public function setCelled($internally=false) { |
231 | - $value=($internally === true) ? "internally celled" : "celled"; |
|
232 | - return $this->addToPropertyCtrl("class", $value, array ("celled","internally celled" )); |
|
231 | + $value=($internally===true) ? "internally celled" : "celled"; |
|
232 | + return $this->addToPropertyCtrl("class", $value, array("celled", "internally celled")); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | /** |
236 | 236 | * A grid can have its columns centered |
237 | 237 | */ |
238 | 238 | public function setCentered() { |
239 | - return $this->addToPropertyCtrl("class", "centered", array ("centered" )); |
|
239 | + return $this->addToPropertyCtrl("class", "centered", array("centered")); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | */ |
255 | 255 | public function setPadded($value=NULL) { |
256 | 256 | if (isset($value)) |
257 | - $this->addToPropertyCtrl("class", $value, array ("vertically","horizontally" )); |
|
257 | + $this->addToPropertyCtrl("class", $value, array("vertically", "horizontally")); |
|
258 | 258 | return $this->addToProperty("class", "padded"); |
259 | 259 | } |
260 | 260 | |
@@ -264,12 +264,12 @@ discard block |
||
264 | 264 | * @return \Ajax\semantic\html\collections\HtmlGrid |
265 | 265 | */ |
266 | 266 | public function setRelaxed($very=false) { |
267 | - $value=($very === true) ? "very relaxed" : "relaxed"; |
|
268 | - return $this->addToPropertyCtrl("class", $value, array ("relaxed","very relaxed" )); |
|
267 | + $value=($very===true) ? "very relaxed" : "relaxed"; |
|
268 | + return $this->addToPropertyCtrl("class", $value, array("relaxed", "very relaxed")); |
|
269 | 269 | } |
270 | 270 | |
271 | 271 | public function setVerticalAlignment($value=VerticalAlignment::MIDDLE) { |
272 | - return $this->addToPropertyCtrl("class", $value . " aligned", VerticalAlignment::getConstantValues("aligned")); |
|
272 | + return $this->addToPropertyCtrl("class", $value." aligned", VerticalAlignment::getConstantValues("aligned")); |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | /** |
@@ -279,9 +279,9 @@ discard block |
||
279 | 279 | * @see \Ajax\common\html\HtmlCollection::createItem() |
280 | 280 | */ |
281 | 281 | protected function createItem($value) { |
282 | - if ($this->_createCols === false) |
|
282 | + if ($this->_createCols===false) |
|
283 | 283 | $value=null; |
284 | - $item=new HtmlGridRow($this->identifier . "-row-" . ($this->count() + 1), $value, $this->_colSizing, $this->_implicitRows); |
|
284 | + $item=new HtmlGridRow($this->identifier."-row-".($this->count()+1), $value, $this->_colSizing, $this->_implicitRows); |
|
285 | 285 | return $item; |
286 | 286 | } |
287 | 287 | |
@@ -292,20 +292,20 @@ discard block |
||
292 | 292 | public function setValues($values, $force=true) { |
293 | 293 | $count=$this->count(); |
294 | 294 | $valuesSize=\sizeof($values); |
295 | - if ($this->_createCols === false || $force === true) { |
|
296 | - for($i=$count; $i < $valuesSize; $i++) { |
|
295 | + if ($this->_createCols===false || $force===true) { |
|
296 | + for ($i=$count; $i<$valuesSize; $i++) { |
|
297 | 297 | $colSize=\sizeof($values[$i]); |
298 | - $this->addItem(new HtmlGridRow($this->identifier . "-row-" . ($this->count() + 1), $colSize, $this->_colSizing, $this->_implicitRows)); |
|
298 | + $this->addItem(new HtmlGridRow($this->identifier."-row-".($this->count()+1), $colSize, $this->_colSizing, $this->_implicitRows)); |
|
299 | 299 | } |
300 | 300 | } |
301 | - $count=\min(array ($this->count(),$valuesSize )); |
|
302 | - for($i=0; $i < $count; $i++) { |
|
303 | - $this->content[$i]->setValues($values[$i], $this->_createCols === false); |
|
301 | + $count=\min(array($this->count(), $valuesSize)); |
|
302 | + for ($i=0; $i<$count; $i++) { |
|
303 | + $this->content[$i]->setValues($values[$i], $this->_createCols===false); |
|
304 | 304 | } |
305 | 305 | } |
306 | 306 | |
307 | - public function setColWidth($numCol,$width){ |
|
308 | - foreach ($this->content as $row){ |
|
307 | + public function setColWidth($numCol, $width) { |
|
308 | + foreach ($this->content as $row) { |
|
309 | 309 | $row->getCol($numCol)->setWidth($width); |
310 | 310 | } |
311 | 311 | return $this; |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | */ |
329 | 329 | public function addDivider($afterColIndex, $vertical=true, $content=NULL) { |
330 | 330 | $col=$this->getCell(0, $afterColIndex); |
331 | - if($col instanceof HtmlGridCol) |
|
331 | + if ($col instanceof HtmlGridCol) |
|
332 | 332 | $col->addDivider($vertical, $content); |
333 | 333 | return $this; |
334 | 334 | } |
@@ -29,8 +29,9 @@ discard block |
||
29 | 29 | $this->_colSizing=false; |
30 | 30 | $this->setWide($numCols); |
31 | 31 | } |
32 | - if($createCols) |
|
33 | - $this->setRowsCount($numRows, $numCols); |
|
32 | + if($createCols) { |
|
33 | + $this->setRowsCount($numRows, $numCols); |
|
34 | + } |
|
34 | 35 | } |
35 | 36 | |
36 | 37 | public function asSegment() { |
@@ -82,8 +83,9 @@ discard block |
||
82 | 83 | public function addCol($width=NULL) { |
83 | 84 | $colCount=$this->colCount() + 1; |
84 | 85 | $this->setColsCount($colCount, true, $width); |
85 | - if ($this->hasOnlyCols($this->count())) |
|
86 | - return $this->content[$colCount - 1]; |
|
86 | + if ($this->hasOnlyCols($this->count())) { |
|
87 | + return $this->content[$colCount - 1]; |
|
88 | + } |
|
87 | 89 | return $this; |
88 | 90 | } |
89 | 91 | |
@@ -178,8 +180,9 @@ discard block |
||
178 | 180 | */ |
179 | 181 | public function rowCount() { |
180 | 182 | $count=$this->count(); |
181 | - if ($this->hasOnlyCols($count)) |
|
182 | - return 0; |
|
183 | + if ($this->hasOnlyCols($count)) { |
|
184 | + return 0; |
|
185 | + } |
|
183 | 186 | return $count; |
184 | 187 | } |
185 | 188 | |
@@ -189,10 +192,12 @@ discard block |
||
189 | 192 | */ |
190 | 193 | public function colCount() { |
191 | 194 | $count=$this->count(); |
192 | - if ($this->hasOnlyCols($count)) |
|
193 | - return $count; |
|
194 | - if ($count > 0) |
|
195 | - return $this->getItem(0)->count(); |
|
195 | + if ($this->hasOnlyCols($count)) { |
|
196 | + return $count; |
|
197 | + } |
|
198 | + if ($count > 0) { |
|
199 | + return $this->getItem(0)->count(); |
|
200 | + } |
|
196 | 201 | return 0; |
197 | 202 | } |
198 | 203 | |
@@ -203,8 +208,9 @@ discard block |
||
203 | 208 | * @return HtmlGridCol|HtmlGridRow |
204 | 209 | */ |
205 | 210 | public function getCell($row, $col) { |
206 | - if ($row < 2 && $this->hasOnlyCols($this->count())) |
|
207 | - return $this->getItem($col); |
|
211 | + if ($row < 2 && $this->hasOnlyCols($this->count())) { |
|
212 | + return $this->getItem($col); |
|
213 | + } |
|
208 | 214 | $rowO=$this->getItem($row); |
209 | 215 | if (isset($rowO)) { |
210 | 216 | $colO=$rowO->getItem($col); |
@@ -253,8 +259,9 @@ discard block |
||
253 | 259 | * @return \Ajax\semantic\html\collections\HtmlGrid |
254 | 260 | */ |
255 | 261 | public function setPadded($value=NULL) { |
256 | - if (isset($value)) |
|
257 | - $this->addToPropertyCtrl("class", $value, array ("vertically","horizontally" )); |
|
262 | + if (isset($value)) { |
|
263 | + $this->addToPropertyCtrl("class", $value, array ("vertically","horizontally" )); |
|
264 | + } |
|
258 | 265 | return $this->addToProperty("class", "padded"); |
259 | 266 | } |
260 | 267 | |
@@ -279,8 +286,9 @@ discard block |
||
279 | 286 | * @see \Ajax\common\html\HtmlCollection::createItem() |
280 | 287 | */ |
281 | 288 | protected function createItem($value) { |
282 | - if ($this->_createCols === false) |
|
283 | - $value=null; |
|
289 | + if ($this->_createCols === false) { |
|
290 | + $value=null; |
|
291 | + } |
|
284 | 292 | $item=new HtmlGridRow($this->identifier . "-row-" . ($this->count() + 1), $value, $this->_colSizing, $this->_implicitRows); |
285 | 293 | return $item; |
286 | 294 | } |
@@ -328,8 +336,9 @@ discard block |
||
328 | 336 | */ |
329 | 337 | public function addDivider($afterColIndex, $vertical=true, $content=NULL) { |
330 | 338 | $col=$this->getCell(0, $afterColIndex); |
331 | - if($col instanceof HtmlGridCol) |
|
332 | - $col->addDivider($vertical, $content); |
|
339 | + if($col instanceof HtmlGridCol) { |
|
340 | + $col->addDivider($vertical, $content); |
|
341 | + } |
|
333 | 342 | return $this; |
334 | 343 | } |
335 | 344 | } |
@@ -18,11 +18,11 @@ discard block |
||
18 | 18 | protected $_dropdown; |
19 | 19 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
20 | 20 | parent::__construct($identifier, "div", "ui buttons"); |
21 | - if ($asIcons === true) |
|
21 | + if ($asIcons===true) |
|
22 | 22 | $this->asIcons(); |
23 | 23 | $this->addElements($elements, $asIcons); |
24 | 24 | } |
25 | - protected function createItem($value){ |
|
25 | + protected function createItem($value) { |
|
26 | 26 | return new HtmlButton("", $value); |
27 | 27 | } |
28 | 28 | |
@@ -31,10 +31,10 @@ discard block |
||
31 | 31 | * @param boolean $asCombo |
32 | 32 | * @return HtmlDropdown|HtmlButton |
33 | 33 | */ |
34 | - public function addDropdown($items,$asCombo=false){ |
|
35 | - $dd= new HtmlDropdown("dd-".$this->identifier,null,$items); |
|
34 | + public function addDropdown($items, $asCombo=false) { |
|
35 | + $dd=new HtmlDropdown("dd-".$this->identifier, null, $items); |
|
36 | 36 | $dd->asButton(); |
37 | - if($asCombo){ |
|
37 | + if ($asCombo) { |
|
38 | 38 | $dd->setAction("combo"); |
39 | 39 | $dd->addToProperty("class", "combo"); |
40 | 40 | } |
@@ -50,13 +50,13 @@ discard block |
||
50 | 50 | */ |
51 | 51 | public function addElement($element, $asIcon=false) { |
52 | 52 | $item=$this->addItem($element); |
53 | - if($asIcon && $item instanceof HtmlButton) |
|
53 | + if ($asIcon && $item instanceof HtmlButton) |
|
54 | 54 | $item->asIcon($element); |
55 | 55 | return $item; |
56 | 56 | } |
57 | 57 | |
58 | 58 | public function addElements($elements, $asIcons=false) { |
59 | - foreach ( $elements as $element ) { |
|
59 | + foreach ($elements as $element) { |
|
60 | 60 | $this->addElement($element, $asIcons); |
61 | 61 | } |
62 | 62 | return $this; |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | public function insertOr($aferIndex=0, $or="or") { |
66 | 66 | $orElement=new HtmlSemDoubleElement("", "div", "or"); |
67 | 67 | $orElement->setProperty("data-text", $or); |
68 | - array_splice($this->content, $aferIndex + 1, 0, array ($orElement )); |
|
68 | + array_splice($this->content, $aferIndex+1, 0, array($orElement)); |
|
69 | 69 | return $this; |
70 | 70 | } |
71 | 71 | |
@@ -78,8 +78,8 @@ discard block |
||
78 | 78 | } |
79 | 79 | |
80 | 80 | public function asIcons() { |
81 | - foreach ( $this->content as $item ) { |
|
82 | - if($item instanceof HtmlButton) |
|
81 | + foreach ($this->content as $item) { |
|
82 | + if ($item instanceof HtmlButton) |
|
83 | 83 | $item->asIcon($item->getContent()); |
84 | 84 | } |
85 | 85 | return $this->addToProperty("class", "icons"); |
@@ -90,9 +90,9 @@ discard block |
||
90 | 90 | * @param array $icons |
91 | 91 | * @return HtmlButtonGroups |
92 | 92 | */ |
93 | - public function addIcons($icons){ |
|
94 | - foreach ( $this->content as $index=>$item ) { |
|
95 | - if($item instanceof HtmlButton && isset($icons[$index])) |
|
93 | + public function addIcons($icons) { |
|
94 | + foreach ($this->content as $index=>$item) { |
|
95 | + if ($item instanceof HtmlButton && isset($icons[$index])) |
|
96 | 96 | $item->addIcon($icons[$index]); |
97 | 97 | } |
98 | 98 | return $this; |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
133 | 133 | */ |
134 | 134 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
135 | - foreach ( $this->content as $element ) { |
|
135 | + foreach ($this->content as $element) { |
|
136 | 136 | $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
137 | 137 | } |
138 | 138 | return $this; |
@@ -144,10 +144,10 @@ discard block |
||
144 | 144 | |
145 | 145 | public function addClasses($classes=array()) { |
146 | 146 | $i=0; |
147 | - if(!\is_array($classes)){ |
|
148 | - $classes=array_fill (0,$this->count(),$classes); |
|
147 | + if (!\is_array($classes)) { |
|
148 | + $classes=array_fill(0, $this->count(), $classes); |
|
149 | 149 | } |
150 | - foreach ( $this->content as $button ) { |
|
150 | + foreach ($this->content as $button) { |
|
151 | 151 | $button->addToProperty("class", $classes[$i++]); |
152 | 152 | } |
153 | 153 | return $this; |
@@ -161,8 +161,8 @@ discard block |
||
161 | 161 | $this->addElement($function($object)); |
162 | 162 | } |
163 | 163 | |
164 | - public function run(JsUtils $js){ |
|
165 | - $result= parent::run($js); |
|
164 | + public function run(JsUtils $js) { |
|
165 | + $result=parent::run($js); |
|
166 | 166 | return $result->setItemSelector(".ui.button"); |
167 | 167 | } |
168 | 168 |
@@ -18,8 +18,9 @@ discard block |
||
18 | 18 | protected $_dropdown; |
19 | 19 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
20 | 20 | parent::__construct($identifier, "div", "ui buttons"); |
21 | - if ($asIcons === true) |
|
22 | - $this->asIcons(); |
|
21 | + if ($asIcons === true) { |
|
22 | + $this->asIcons(); |
|
23 | + } |
|
23 | 24 | $this->addElements($elements, $asIcons); |
24 | 25 | } |
25 | 26 | protected function createItem($value){ |
@@ -50,8 +51,9 @@ discard block |
||
50 | 51 | */ |
51 | 52 | public function addElement($element, $asIcon=false) { |
52 | 53 | $item=$this->addItem($element); |
53 | - if($asIcon && $item instanceof HtmlButton) |
|
54 | - $item->asIcon($element); |
|
54 | + if($asIcon && $item instanceof HtmlButton) { |
|
55 | + $item->asIcon($element); |
|
56 | + } |
|
55 | 57 | return $item; |
56 | 58 | } |
57 | 59 | |
@@ -79,8 +81,9 @@ discard block |
||
79 | 81 | |
80 | 82 | public function asIcons() { |
81 | 83 | foreach ( $this->content as $item ) { |
82 | - if($item instanceof HtmlButton) |
|
83 | - $item->asIcon($item->getContent()); |
|
84 | + if($item instanceof HtmlButton) { |
|
85 | + $item->asIcon($item->getContent()); |
|
86 | + } |
|
84 | 87 | } |
85 | 88 | return $this->addToProperty("class", "icons"); |
86 | 89 | } |
@@ -92,8 +95,9 @@ discard block |
||
92 | 95 | */ |
93 | 96 | public function addIcons($icons){ |
94 | 97 | foreach ( $this->content as $index=>$item ) { |
95 | - if($item instanceof HtmlButton && isset($icons[$index])) |
|
96 | - $item->addIcon($icons[$index]); |
|
98 | + if($item instanceof HtmlButton && isset($icons[$index])) { |
|
99 | + $item->addIcon($icons[$index]); |
|
100 | + } |
|
97 | 101 | } |
98 | 102 | return $this; |
99 | 103 | } |
@@ -13,11 +13,11 @@ discard block |
||
13 | 13 | class HtmlViewContent extends HtmlSemDoubleElement { |
14 | 14 | use ContentPartTrait; |
15 | 15 | public function __construct($identifier, $content=array()) { |
16 | - parent::__construct($identifier, "div", "content",[]); |
|
16 | + parent::__construct($identifier, "div", "content", []); |
|
17 | 17 | $this->setContent($content); |
18 | 18 | } |
19 | 19 | |
20 | - public function setContent($value){ |
|
20 | + public function setContent($value) { |
|
21 | 21 | if (\is_array($value)) { |
22 | 22 | $header=JArray::getValue($value, "header", 0); |
23 | 23 | $metas=JArray::getValue($value, "metas", 1); |
@@ -27,24 +27,24 @@ discard block |
||
27 | 27 | if (isset($image)) { |
28 | 28 | $this->addImage($image); |
29 | 29 | } |
30 | - $this->addHeaderContent($header, $metas, $description,$extra); |
|
30 | + $this->addHeaderContent($header, $metas, $description, $extra); |
|
31 | 31 | } else |
32 | 32 | $this->addContent($value); |
33 | 33 | } |
34 | 34 | |
35 | 35 | public function addElement($content, $baseClass="") { |
36 | 36 | $count=\sizeof($this->content); |
37 | - $result=new HtmlViewContent("element-" . $count . "-" . $this->identifier, $content); |
|
37 | + $result=new HtmlViewContent("element-".$count."-".$this->identifier, $content); |
|
38 | 38 | $result->setClass($baseClass); |
39 | 39 | $this->addContent($result); |
40 | 40 | return $result; |
41 | 41 | } |
42 | 42 | |
43 | 43 | public function addMeta($value, $direction=Direction::LEFT) { |
44 | - if (\array_key_exists("meta", $this->content) === false) { |
|
45 | - $this->content["meta"]=new HtmlSemDoubleElement("meta-" . $this->identifier, "div", "meta", array ()); |
|
44 | + if (\array_key_exists("meta", $this->content)===false) { |
|
45 | + $this->content["meta"]=new HtmlSemDoubleElement("meta-".$this->identifier, "div", "meta", array()); |
|
46 | 46 | } |
47 | - if ($direction === Direction::RIGHT) { |
|
47 | + if ($direction===Direction::RIGHT) { |
|
48 | 48 | $value=new HtmlSemDoubleElement("", "span", "", $value); |
49 | 49 | $value->setFloated($direction); |
50 | 50 | } |
@@ -53,8 +53,8 @@ discard block |
||
53 | 53 | } |
54 | 54 | |
55 | 55 | public function addExtra($value) { |
56 | - if (\array_key_exists("extra", $this->content) === false) { |
|
57 | - $this->content["extra"]=new HtmlSemDoubleElement("extra-" . $this->identifier, "div", "extra", array ()); |
|
56 | + if (\array_key_exists("extra", $this->content)===false) { |
|
57 | + $this->content["extra"]=new HtmlSemDoubleElement("extra-".$this->identifier, "div", "extra", array()); |
|
58 | 58 | } |
59 | 59 | $this->content["extra"]->addContent($value); |
60 | 60 | return $this->content["extra"]; |
@@ -75,15 +75,15 @@ discard block |
||
75 | 75 | * @param boolean $before |
76 | 76 | * @return HtmlButtonGroups |
77 | 77 | */ |
78 | - public function addContentButtons($elements=array(), $asIcons=false,$part="extra",$before=false){ |
|
79 | - $buttons=new HtmlButtonGroups("buttons-".$this->identifier,$elements,$asIcons); |
|
80 | - $this->addElementInPart($buttons,$part, $before,true); |
|
78 | + public function addContentButtons($elements=array(), $asIcons=false, $part="extra", $before=false) { |
|
79 | + $buttons=new HtmlButtonGroups("buttons-".$this->identifier, $elements, $asIcons); |
|
80 | + $this->addElementInPart($buttons, $part, $before, true); |
|
81 | 81 | return $buttons; |
82 | 82 | } |
83 | 83 | |
84 | 84 | public function addMetas($metas) { |
85 | 85 | if (\is_array($metas)) { |
86 | - foreach ( $metas as $meta ) { |
|
86 | + foreach ($metas as $meta) { |
|
87 | 87 | $this->addMeta($meta); |
88 | 88 | } |
89 | 89 | } else |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | } |
93 | 93 | |
94 | 94 | public function addContentIcon($icon, $caption=NULL, $direction=Direction::LEFT) { |
95 | - if ($direction === Direction::RIGHT) { |
|
95 | + if ($direction===Direction::RIGHT) { |
|
96 | 96 | if (isset($caption)) { |
97 | 97 | $result=new HtmlSemDoubleElement("", "span", "", $caption); |
98 | 98 | $result->addIcon($icon); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | } |
111 | 111 | |
112 | 112 | public function addContentText($caption, $direction=Direction::LEFT) { |
113 | - if ($direction === Direction::RIGHT) { |
|
113 | + if ($direction===Direction::RIGHT) { |
|
114 | 114 | $result=new HtmlSemDoubleElement("", "span", "", $caption); |
115 | 115 | $this->addContent($result); |
116 | 116 | $result->setFloated($direction); |
@@ -120,20 +120,20 @@ discard block |
||
120 | 120 | } |
121 | 121 | |
122 | 122 | public function addContentIcons($icons, $direction=Direction::LEFT) { |
123 | - foreach ( $icons as $icon ) { |
|
123 | + foreach ($icons as $icon) { |
|
124 | 124 | $this->addContentIcon($icon, NULL, $direction); |
125 | 125 | } |
126 | 126 | return $this; |
127 | 127 | } |
128 | 128 | |
129 | - public function addHeaderContent($header, $metas=array(), $description=NULL,$extra=NULL) { |
|
130 | - if(isset($header)) |
|
129 | + public function addHeaderContent($header, $metas=array(), $description=NULL, $extra=NULL) { |
|
130 | + if (isset($header)) |
|
131 | 131 | $this->addElement($header, "header"); |
132 | 132 | $this->addMetas($metas); |
133 | 133 | if (isset($description)) { |
134 | 134 | $this->addElement($description, "description"); |
135 | 135 | } |
136 | - if(isset($extra)){ |
|
136 | + if (isset($extra)) { |
|
137 | 137 | $this->addExtra($extra); |
138 | 138 | } |
139 | 139 | return $this; |
@@ -28,8 +28,9 @@ discard block |
||
28 | 28 | $this->addImage($image); |
29 | 29 | } |
30 | 30 | $this->addHeaderContent($header, $metas, $description,$extra); |
31 | - } else |
|
32 | - $this->addContent($value); |
|
31 | + } else { |
|
32 | + $this->addContent($value); |
|
33 | + } |
|
33 | 34 | } |
34 | 35 | |
35 | 36 | public function addElement($content, $baseClass="") { |
@@ -62,8 +63,9 @@ discard block |
||
62 | 63 | |
63 | 64 | public function addImage($src="", $alt="", $size=NULL) { |
64 | 65 | $image=new HtmlImg("img-", $src, $alt); |
65 | - if (isset($size)) |
|
66 | - $image->setSize($size); |
|
66 | + if (isset($size)) { |
|
67 | + $image->setSize($size); |
|
68 | + } |
|
67 | 69 | $this->content['image']=$image; |
68 | 70 | return $image; |
69 | 71 | } |
@@ -86,8 +88,9 @@ discard block |
||
86 | 88 | foreach ( $metas as $meta ) { |
87 | 89 | $this->addMeta($meta); |
88 | 90 | } |
89 | - } else |
|
90 | - $this->addMeta($metas); |
|
91 | + } else { |
|
92 | + $this->addMeta($metas); |
|
93 | + } |
|
91 | 94 | return $this; |
92 | 95 | } |
93 | 96 | |
@@ -114,8 +117,9 @@ discard block |
||
114 | 117 | $result=new HtmlSemDoubleElement("", "span", "", $caption); |
115 | 118 | $this->addContent($result); |
116 | 119 | $result->setFloated($direction); |
117 | - } else |
|
118 | - $result=$this->addContent($caption); |
|
120 | + } else { |
|
121 | + $result=$this->addContent($caption); |
|
122 | + } |
|
119 | 123 | return $result; |
120 | 124 | } |
121 | 125 | |
@@ -127,8 +131,9 @@ discard block |
||
127 | 131 | } |
128 | 132 | |
129 | 133 | public function addHeaderContent($header, $metas=array(), $description=NULL,$extra=NULL) { |
130 | - if(isset($header)) |
|
131 | - $this->addElement($header, "header"); |
|
134 | + if(isset($header)) { |
|
135 | + $this->addElement($header, "header"); |
|
136 | + } |
|
132 | 137 | $this->addMetas($metas); |
133 | 138 | if (isset($description)) { |
134 | 139 | $this->addElement($description, "description"); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | foreach ($ajaxSubmit as $ajaxSubmitItem){ |
50 | 50 | $compilation.=$ajaxSubmitItem->compile($js); |
51 | 51 | } |
52 | - }elseif($ajaxSubmit instanceof AjaxCall){ |
|
52 | + } elseif($ajaxSubmit instanceof AjaxCall){ |
|
53 | 53 | $compilation=$ajaxSubmit->compile($js); |
54 | 54 | } |
55 | 55 | $compilation=str_ireplace("\"","%quote%", $compilation); |
@@ -67,8 +67,9 @@ discard block |
||
67 | 67 | |
68 | 68 | public function setAttached($value=true){ |
69 | 69 | $form=$this->getForm(); |
70 | - if($value) |
|
71 | - $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
70 | + if($value) { |
|
71 | + $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
72 | + } |
|
72 | 73 | return $form; |
73 | 74 | } |
74 | 75 | |
@@ -90,10 +91,11 @@ discard block |
||
90 | 91 | */ |
91 | 92 | public function submitOn($event,$identifierOrElement,$url,$responseElement,$parameters=NULL){ |
92 | 93 | $form=$this->getForm(); |
93 | - if($identifierOrElement instanceof BaseHtml) |
|
94 | - $elem=$identifierOrElement; |
|
95 | - else |
|
96 | - $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
|
94 | + if($identifierOrElement instanceof BaseHtml) { |
|
95 | + $elem=$identifierOrElement; |
|
96 | + } else { |
|
97 | + $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
|
98 | + } |
|
97 | 99 | if(isset($elem)){ |
98 | 100 | $this->_buttonAsSubmit($elem, $event,$url,$responseElement,$parameters); |
99 | 101 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * @author jc |
16 | 16 | * |
17 | 17 | */ |
18 | -trait FormTrait{ |
|
18 | +trait FormTrait { |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * @return HtmlForm |
@@ -23,23 +23,23 @@ discard block |
||
23 | 23 | abstract protected function getForm(); |
24 | 24 | |
25 | 25 | |
26 | - protected function addCompoValidation(Form $compo,HtmlFormField $field){ |
|
26 | + protected function addCompoValidation(Form $compo, HtmlFormField $field) { |
|
27 | 27 | $validation=$field->getValidation(); |
28 | - if(isset($validation)){ |
|
28 | + if (isset($validation)) { |
|
29 | 29 | $validation->setIdentifier($field->getDataField()->getIdentifier()); |
30 | 30 | $compo->addFieldValidation($validation); |
31 | 31 | } |
32 | 32 | } |
33 | 33 | |
34 | - protected function addExtraCompoValidation(Form $compo,FieldValidation $validation){ |
|
34 | + protected function addExtraCompoValidation(Form $compo, FieldValidation $validation) { |
|
35 | 35 | $compo->addFieldValidation($validation); |
36 | 36 | } |
37 | 37 | |
38 | - protected function _runValidationParams(Form &$compo,JsUtils $js=NULL){ |
|
38 | + protected function _runValidationParams(Form&$compo, JsUtils $js=NULL) { |
|
39 | 39 | $form=$this->getForm(); |
40 | 40 | $params=$form->getValidationParams(); |
41 | - if(isset($params["_ajaxSubmit"])){ |
|
42 | - $compilation=$this->_compileAjaxSubmit($params["_ajaxSubmit"],$js); |
|
41 | + if (isset($params["_ajaxSubmit"])) { |
|
42 | + $compilation=$this->_compileAjaxSubmit($params["_ajaxSubmit"], $js); |
|
43 | 43 | $this->onSuccess($compilation); |
44 | 44 | $form->removeValidationParam("_ajaxSubmit"); |
45 | 45 | } |
@@ -48,16 +48,16 @@ discard block |
||
48 | 48 | $form->addEventsOnRun($js); |
49 | 49 | } |
50 | 50 | |
51 | - protected function _compileAjaxSubmit($ajaxSubmit,JsUtils $js=null){ |
|
51 | + protected function _compileAjaxSubmit($ajaxSubmit, JsUtils $js=null) { |
|
52 | 52 | $compilation=""; |
53 | - if(\is_array($ajaxSubmit)){ |
|
54 | - foreach ($ajaxSubmit as $ajaxSubmitItem){ |
|
53 | + if (\is_array($ajaxSubmit)) { |
|
54 | + foreach ($ajaxSubmit as $ajaxSubmitItem) { |
|
55 | 55 | $compilation.=$ajaxSubmitItem->compile($js); |
56 | 56 | } |
57 | - }elseif($ajaxSubmit instanceof AjaxCall){ |
|
57 | + }elseif ($ajaxSubmit instanceof AjaxCall) { |
|
58 | 58 | $compilation=$ajaxSubmit->compile($js); |
59 | 59 | } |
60 | - $compilation=str_ireplace("\"","%quote%", $compilation); |
|
60 | + $compilation=str_ireplace("\"", "%quote%", $compilation); |
|
61 | 61 | return $compilation; |
62 | 62 | } |
63 | 63 | |
@@ -70,14 +70,14 @@ discard block |
||
70 | 70 | return $this; |
71 | 71 | } |
72 | 72 | |
73 | - public function setAttached($value=true){ |
|
73 | + public function setAttached($value=true) { |
|
74 | 74 | $form=$this->getForm(); |
75 | - if($value) |
|
76 | - $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
75 | + if ($value) |
|
76 | + $form->addToPropertyCtrl("class", "attached", array("attached")); |
|
77 | 77 | return $form; |
78 | 78 | } |
79 | 79 | |
80 | - public function addErrorMessage(){ |
|
80 | + public function addErrorMessage() { |
|
81 | 81 | return $this->getForm()->addContent((new HtmlMessage(""))->setError()); |
82 | 82 | } |
83 | 83 | |
@@ -93,48 +93,48 @@ discard block |
||
93 | 93 | * @param array $parameters |
94 | 94 | * @return HtmlForm |
95 | 95 | */ |
96 | - public function submitOn($event,$identifierOrElement,$url,$responseElement,$parameters=NULL){ |
|
96 | + public function submitOn($event, $identifierOrElement, $url, $responseElement, $parameters=NULL) { |
|
97 | 97 | $form=$this->getForm(); |
98 | - if($identifierOrElement instanceof BaseHtml) |
|
98 | + if ($identifierOrElement instanceof BaseHtml) |
|
99 | 99 | $elem=$identifierOrElement; |
100 | 100 | else |
101 | 101 | $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
102 | - if(isset($elem)){ |
|
103 | - $this->_buttonAsSubmit($elem, $event,$url,$responseElement,$parameters); |
|
102 | + if (isset($elem)) { |
|
103 | + $this->_buttonAsSubmit($elem, $event, $url, $responseElement, $parameters); |
|
104 | 104 | } |
105 | 105 | return $form; |
106 | 106 | } |
107 | 107 | |
108 | - public function submitOnClick($identifier,$url,$responseElement,$parameters=NULL){ |
|
109 | - return $this->submitOn("click", $identifier, $url, $responseElement,$parameters); |
|
108 | + public function submitOnClick($identifier, $url, $responseElement, $parameters=NULL) { |
|
109 | + return $this->submitOn("click", $identifier, $url, $responseElement, $parameters); |
|
110 | 110 | } |
111 | 111 | |
112 | - public function addSubmit($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$parameters=NULL){ |
|
113 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
114 | - return $this->_buttonAsSubmit($bt, "click",$url,$responseElement,$parameters); |
|
112 | + public function addSubmit($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $parameters=NULL) { |
|
113 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
114 | + return $this->_buttonAsSubmit($bt, "click", $url, $responseElement, $parameters); |
|
115 | 115 | } |
116 | 116 | |
117 | - protected function _buttonAsSubmit(BaseHtml &$button,$event,$url,$responseElement=NULL,$parameters=NULL){ |
|
117 | + protected function _buttonAsSubmit(BaseHtml&$button, $event, $url, $responseElement=NULL, $parameters=NULL) { |
|
118 | 118 | $form=$this->getForm(); |
119 | - if(isset($url) && isset($responseElement)){ |
|
120 | - $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');",true,true); |
|
121 | - $this->setSubmitParams($url,$responseElement,$parameters); |
|
119 | + if (isset($url) && isset($responseElement)) { |
|
120 | + $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');", true, true); |
|
121 | + $this->setSubmitParams($url, $responseElement, $parameters); |
|
122 | 122 | } |
123 | 123 | return $button; |
124 | 124 | } |
125 | 125 | |
126 | - public function setSubmitParams($url,$responseElement=NULL,$parameters=NULL){ |
|
126 | + public function setSubmitParams($url, $responseElement=NULL, $parameters=NULL) { |
|
127 | 127 | $form=$this->getForm(); |
128 | - $params=["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url,"stopPropagation"=>true]; |
|
129 | - if(\is_array($parameters)){ |
|
130 | - $params=\array_merge($params,$parameters); |
|
128 | + $params=["form"=>$form->getIdentifier(), "responseElement"=>$responseElement, "url"=>$url, "stopPropagation"=>true]; |
|
129 | + if (\is_array($parameters)) { |
|
130 | + $params=\array_merge($params, $parameters); |
|
131 | 131 | } |
132 | 132 | $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", $params)); |
133 | 133 | return $this; |
134 | 134 | } |
135 | 135 | |
136 | - public function addReset($identifier,$value,$cssStyle=NULL){ |
|
137 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
136 | + public function addReset($identifier, $value, $cssStyle=NULL) { |
|
137 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
138 | 138 | $bt->setProperty("type", "reset"); |
139 | 139 | return $bt; |
140 | 140 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | * @param string $jsCode |
145 | 145 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
146 | 146 | */ |
147 | - public function onValid($jsCode){ |
|
147 | + public function onValid($jsCode) { |
|
148 | 148 | $form=$this->getForm(); |
149 | 149 | $form->addValidationParam("onValid", "%function(){".$jsCode."}%"); |
150 | 150 | return $form; |
@@ -155,35 +155,35 @@ discard block |
||
155 | 155 | * @param string $jsCode can use event and fields parameters |
156 | 156 | * @return HtmlForm |
157 | 157 | */ |
158 | - public function onSuccess($jsCode){ |
|
158 | + public function onSuccess($jsCode) { |
|
159 | 159 | $form=$this->getForm(); |
160 | - $form->addValidationParam("onSuccess", $jsCode,"%function(event,fields){","}%"); |
|
160 | + $form->addValidationParam("onSuccess", $jsCode, "%function(event,fields){", "}%"); |
|
161 | 161 | return $form; |
162 | 162 | } |
163 | 163 | |
164 | - public function addExtraFieldRules($fieldname,$rules){ |
|
164 | + public function addExtraFieldRules($fieldname, $rules) { |
|
165 | 165 | $form=$this->getForm(); |
166 | 166 | $fv=$form->getExtraFieldValidation($fieldname); |
167 | - foreach ($rules as $rule){ |
|
167 | + foreach ($rules as $rule) { |
|
168 | 168 | $fv->addRule($rule); |
169 | 169 | } |
170 | 170 | } |
171 | 171 | |
172 | - public function addExtraFieldRule($fieldname,$type,$prompt=NULL,$value=NULL){ |
|
172 | + public function addExtraFieldRule($fieldname, $type, $prompt=NULL, $value=NULL) { |
|
173 | 173 | $form=$this->getForm(); |
174 | 174 | $fv=$form->getExtraFieldValidation($fieldname); |
175 | - $fv->addRule($type,$prompt,$value); |
|
175 | + $fv->addRule($type, $prompt, $value); |
|
176 | 176 | } |
177 | 177 | |
178 | - public function setOptional($fieldname,$optional=true){ |
|
178 | + public function setOptional($fieldname, $optional=true) { |
|
179 | 179 | $form=$this->getForm(); |
180 | 180 | $fv=$form->getExtraFieldValidation($fieldname); |
181 | 181 | $fv->setOptional($optional); |
182 | 182 | } |
183 | 183 | |
184 | - public function setActionTarget(string $action, string $target){ |
|
184 | + public function setActionTarget(string $action, string $target) { |
|
185 | 185 | $form=$this->getForm(); |
186 | - $form->setProperty('data-target',$target); |
|
187 | - $form->setProperty('action',$action); |
|
186 | + $form->setProperty('data-target', $target); |
|
187 | + $form->setProperty('action', $action); |
|
188 | 188 | } |
189 | 189 | } |
@@ -123,8 +123,9 @@ |
||
123 | 123 | } |
124 | 124 | |
125 | 125 | public function run(JsUtils $js){ |
126 | - if(JString::isNotNull($this->_identifier)) |
|
127 | - $js->execOn("click", "#".$this->_identifier." .ui.toggle", 'var active=$(this).hasClass("active");$(this).children("i").toggleClass("up",active).toggleClass("down",!active);var nextTd=$(this).closest("td").next("td");nextTd.children(":not(.toggle-caption)").toggle(active);nextTd.children(".toggle-caption").toggle(!active);$(this).trigger({type:"toggled",active: active,caption: nextTd.children(".toggle-caption")});'); |
|
126 | + if(JString::isNotNull($this->_identifier)) { |
|
127 | + $js->execOn("click", "#".$this->_identifier." .ui.toggle", 'var active=$(this).hasClass("active");$(this).children("i").toggleClass("up",active).toggleClass("down",!active);var nextTd=$(this).closest("td").next("td");nextTd.children(":not(.toggle-caption)").toggle(active);nextTd.children(".toggle-caption").toggle(!active);$(this).trigger({type:"toggled",active: active,caption: nextTd.children(".toggle-caption")});'); |
|
128 | + } |
|
128 | 129 | parent::run($js); |
129 | 130 | } |
130 | 131 | } |
@@ -22,72 +22,72 @@ discard block |
||
22 | 22 | protected $_colWidths; |
23 | 23 | |
24 | 24 | public function __construct($identifier, $modelInstance=NULL) { |
25 | - parent::__construct($identifier, null,$modelInstance); |
|
26 | - $this->_init(new DeInstanceViewer($identifier), "table", new HtmlTable($identifier, 0,2), false); |
|
25 | + parent::__construct($identifier, null, $modelInstance); |
|
26 | + $this->_init(new DeInstanceViewer($identifier), "table", new HtmlTable($identifier, 0, 2), false); |
|
27 | 27 | $this->content["table"]->setDefinition()->addClass("_element"); |
28 | 28 | } |
29 | 29 | |
30 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
31 | - if(!$this->_generated){ |
|
30 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
31 | + if (!$this->_generated) { |
|
32 | 32 | $this->_instanceViewer->setInstance($this->_modelInstance); |
33 | 33 | |
34 | 34 | $table=$this->content["table"]; |
35 | 35 | $this->_generateContent($table); |
36 | 36 | |
37 | - if(isset($this->_toolbar)){ |
|
37 | + if (isset($this->_toolbar)) { |
|
38 | 38 | $this->_setToolbarPosition($table); |
39 | 39 | } |
40 | - if(isset($this->_colWidths)){ |
|
40 | + if (isset($this->_colWidths)) { |
|
41 | 41 | $this->_applyStyleAttributes($table); |
42 | 42 | } |
43 | - $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"table",PositionInTable::AFTERTABLE]); |
|
43 | + $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "table", PositionInTable::AFTERTABLE]); |
|
44 | 44 | $this->_compileForm(); |
45 | 45 | $this->_generated=true; |
46 | 46 | } |
47 | - return parent::compile($js,$view); |
|
47 | + return parent::compile($js, $view); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | 51 | * @param HtmlTable $table |
52 | 52 | */ |
53 | - protected function _generateContent($table){ |
|
54 | - $values= $this->_instanceViewer->getValues(); |
|
53 | + protected function _generateContent($table) { |
|
54 | + $values=$this->_instanceViewer->getValues(); |
|
55 | 55 | $captions=$this->_instanceViewer->getCaptions(); |
56 | 56 | $fields=$this->_instanceViewer->getVisibleProperties(); |
57 | 57 | $count=$this->_instanceViewer->count(); |
58 | 58 | $this->setProperty("data-ajax", $this->_instanceViewer->getIdentifier()); |
59 | - for($i=0;$i<$count;$i++){ |
|
60 | - $row=$table->addRow([$captions[$i],$values[$i]]); |
|
59 | + for ($i=0; $i<$count; $i++) { |
|
60 | + $row=$table->addRow([$captions[$i], $values[$i]]); |
|
61 | 61 | $row->getItem(1)->setProperty("data-field", $fields[$i]); |
62 | 62 | } |
63 | 63 | } |
64 | 64 | |
65 | - public function getFieldValue($index){ |
|
66 | - if(is_string($index)){ |
|
65 | + public function getFieldValue($index) { |
|
66 | + if (is_string($index)) { |
|
67 | 67 | $fields=$this->_instanceViewer->getVisibleProperties(); |
68 | 68 | $index=array_search($index, $fields); |
69 | 69 | } |
70 | - if(is_numeric($index)){ |
|
71 | - $values= $this->_instanceViewer->getValues(); |
|
72 | - if(isset($values[$index])){ |
|
70 | + if (is_numeric($index)) { |
|
71 | + $values=$this->_instanceViewer->getValues(); |
|
72 | + if (isset($values[$index])) { |
|
73 | 73 | return $values[$index]; |
74 | 74 | } |
75 | 75 | } |
76 | 76 | return null; |
77 | 77 | } |
78 | 78 | |
79 | - protected function _applyStyleAttributes(HtmlTable $table){ |
|
79 | + protected function _applyStyleAttributes(HtmlTable $table) { |
|
80 | 80 | $table->setColWidths($this->_colWidths); |
81 | 81 | } |
82 | - protected function _getFieldName($index){ |
|
82 | + protected function _getFieldName($index) { |
|
83 | 83 | return $this->_instanceViewer->getFieldName($index); |
84 | 84 | } |
85 | 85 | |
86 | - protected function _getFieldCaption($index){ |
|
86 | + protected function _getFieldCaption($index) { |
|
87 | 87 | return null; |
88 | 88 | } |
89 | 89 | |
90 | - protected function _getFieldIdentifier($prefix,$name=""){ |
|
90 | + protected function _getFieldIdentifier($prefix, $name="") { |
|
91 | 91 | return $this->identifier."-{$prefix}-".$name; |
92 | 92 | } |
93 | 93 | |
@@ -119,11 +119,11 @@ discard block |
||
119 | 119 | return $this; |
120 | 120 | } |
121 | 121 | |
122 | - public function asForm(){ |
|
122 | + public function asForm() { |
|
123 | 123 | return $this->getForm(); |
124 | 124 | } |
125 | 125 | |
126 | - public function setColCaptionWidth($width){ |
|
126 | + public function setColCaptionWidth($width) { |
|
127 | 127 | $this->_colWidths[0]=$width; |
128 | 128 | return $this; |
129 | 129 | } |
@@ -133,13 +133,13 @@ discard block |
||
133 | 133 | return $this; |
134 | 134 | } |
135 | 135 | |
136 | - public function setColWidths($widths){ |
|
136 | + public function setColWidths($widths) { |
|
137 | 137 | $this->_colWidths=$widths; |
138 | 138 | return $this; |
139 | 139 | } |
140 | 140 | |
141 | - public function run(JsUtils $js){ |
|
142 | - if(JString::isNotNull($this->_identifier)) |
|
141 | + public function run(JsUtils $js) { |
|
142 | + if (JString::isNotNull($this->_identifier)) |
|
143 | 143 | $js->execOn("click", "#".$this->_identifier." .ui.toggle", 'var active=$(this).hasClass("active");$(this).children("i").toggleClass("up",active).toggleClass("down",!active);var nextTd=$(this).closest("td").next("td");nextTd.children(":not(.toggle-caption)").toggle(active);nextTd.children(".toggle-caption").toggle(!active);$(this).trigger({type:"toggled",active: active,caption: nextTd.children(".toggle-caption")});'); |
144 | 144 | parent::run($js); |
145 | 145 | } |