@@ -30,9 +30,17 @@ discard block |
||
30 | 30 | trait FieldAsTrait{ |
31 | 31 | |
32 | 32 | abstract protected function _getFieldIdentifier($prefix,$name=""); |
33 | + |
|
34 | + /** |
|
35 | + * @param \Closure $callback |
|
36 | + */ |
|
33 | 37 | abstract public function setValueFunction($index,$callback); |
34 | 38 | abstract protected function _getFieldName($index); |
35 | 39 | abstract protected function _getFieldCaption($index); |
40 | + |
|
41 | + /** |
|
42 | + * @param string $event |
|
43 | + */ |
|
36 | 44 | abstract protected function _buttonAsSubmit(BaseHtml &$button,$event,$url,$responseElement=NULL,$parameters=NULL); |
37 | 45 | |
38 | 46 | /** |
@@ -243,6 +251,9 @@ discard block |
||
243 | 251 | } |
244 | 252 | } |
245 | 253 | |
254 | + /** |
|
255 | + * @param integer $index |
|
256 | + */ |
|
246 | 257 | public function fieldAs($index,$type,$attributes=NULL){ |
247 | 258 | $method="fieldAs".\ucfirst($type); |
248 | 259 | if(\method_exists($this, $method)){ |
@@ -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,178 +98,178 @@ 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,$attributes=NULL){ |
|
118 | - return $this->_fieldAs(function($id,$name,$value) use($icon){ |
|
119 | - $lbl=new HtmlLabel($id,$value); |
|
120 | - if(isset($icon)) |
|
117 | + public function fieldAsLabel($index, $icon=NULL, $attributes=NULL) { |
|
118 | + return $this->_fieldAs(function($id, $name, $value) use($icon){ |
|
119 | + $lbl=new HtmlLabel($id, $value); |
|
120 | + if (isset($icon)) |
|
121 | 121 | $lbl->addIcon($icon); |
122 | 122 | return $lbl; |
123 | - }, $index,$attributes,"label"); |
|
123 | + }, $index, $attributes, "label"); |
|
124 | 124 | } |
125 | 125 | |
126 | - public function fieldAsHeader($index,$niveau=1,$icon=NULL,$attributes=NULL){ |
|
127 | - return $this->_fieldAs(function($id,$name,$value) use($niveau,$icon){ |
|
128 | - $header=new HtmlHeader($id,$niveau,$value); |
|
129 | - if(isset($icon)) |
|
126 | + public function fieldAsHeader($index, $niveau=1, $icon=NULL, $attributes=NULL) { |
|
127 | + return $this->_fieldAs(function($id, $name, $value) use($niveau, $icon){ |
|
128 | + $header=new HtmlHeader($id, $niveau, $value); |
|
129 | + if (isset($icon)) |
|
130 | 130 | $header->asIcon($icon, $value); |
131 | 131 | return $header; |
132 | - }, $index,$attributes,"header"); |
|
132 | + }, $index, $attributes, "header"); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | |
136 | - public function fieldAsImage($index,$size=Size::MINI,$circular=false){ |
|
137 | - $this->setValueFunction($index,function($img) use($size,$circular){ |
|
138 | - $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular)$image->setCircular(); |
|
136 | + public function fieldAsImage($index, $size=Size::MINI, $circular=false) { |
|
137 | + $this->setValueFunction($index, function($img) use($size, $circular){ |
|
138 | + $image=new HtmlImage($this->_getFieldIdentifier("image"), $img); $image->setSize($size); if ($circular)$image->setCircular(); |
|
139 | 139 | return $image; |
140 | 140 | }); |
141 | 141 | return $this; |
142 | 142 | } |
143 | 143 | |
144 | - public function fieldAsFlag($index){ |
|
145 | - $this->setValueFunction($index,function($flag){ |
|
146 | - $flag=new HtmlFlag($this->_getFieldIdentifier("flag"),$flag); |
|
144 | + public function fieldAsFlag($index) { |
|
145 | + $this->setValueFunction($index, function($flag) { |
|
146 | + $flag=new HtmlFlag($this->_getFieldIdentifier("flag"), $flag); |
|
147 | 147 | return $flag; |
148 | 148 | }); |
149 | 149 | return $this; |
150 | 150 | } |
151 | 151 | |
152 | - public function fieldAsAvatar($index,$attributes=NULL){ |
|
153 | - return $this->_fieldAs(function($id,$name,$value){ |
|
154 | - $img=new HtmlImage($id,$value); |
|
152 | + public function fieldAsAvatar($index, $attributes=NULL) { |
|
153 | + return $this->_fieldAs(function($id, $name, $value) { |
|
154 | + $img=new HtmlImage($id, $value); |
|
155 | 155 | $img->asAvatar(); |
156 | 156 | return $img; |
157 | - }, $index,$attributes,"avatar"); |
|
157 | + }, $index, $attributes, "avatar"); |
|
158 | 158 | } |
159 | 159 | |
160 | - public function fieldAsRadio($index,$attributes=NULL){ |
|
161 | - return $this->_fieldAs(function($id,$name,$value) use($attributes){ |
|
162 | - $input= new HtmlRadio($id,$name,$value,$value); |
|
160 | + public function fieldAsRadio($index, $attributes=NULL) { |
|
161 | + return $this->_fieldAs(function($id, $name, $value) use($attributes){ |
|
162 | + $input=new HtmlRadio($id, $name, $value, $value); |
|
163 | 163 | return $this->_prepareFormFields($input, $name, $attributes); |
164 | - }, $index,$attributes,"radio"); |
|
164 | + }, $index, $attributes, "radio"); |
|
165 | 165 | } |
166 | 166 | |
167 | - public function fieldAsRadios($index,$elements=[],$attributes=NULL){ |
|
168 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($elements){ |
|
169 | - return HtmlFormFields::radios($name,$elements,$caption,$value); |
|
170 | - }, $index,$attributes,"radios"); |
|
167 | + public function fieldAsRadios($index, $elements=[], $attributes=NULL) { |
|
168 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($elements){ |
|
169 | + return HtmlFormFields::radios($name, $elements, $caption, $value); |
|
170 | + }, $index, $attributes, "radios"); |
|
171 | 171 | } |
172 | 172 | |
173 | - public function fieldAsInput($index,$attributes=NULL){ |
|
174 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes){ |
|
175 | - $input= new HtmlFormInput($id,$caption,"text",$value); |
|
173 | + public function fieldAsInput($index, $attributes=NULL) { |
|
174 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes){ |
|
175 | + $input=new HtmlFormInput($id, $caption, "text", $value); |
|
176 | 176 | return $this->_prepareFormFields($input, $name, $attributes); |
177 | - }, $index,$attributes,"input"); |
|
177 | + }, $index, $attributes, "input"); |
|
178 | 178 | } |
179 | 179 | |
180 | - public function fieldAsTextarea($index,$attributes=NULL){ |
|
181 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes){ |
|
182 | - $textarea=new HtmlFormTextarea($id,$caption,$value); |
|
180 | + public function fieldAsTextarea($index, $attributes=NULL) { |
|
181 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes){ |
|
182 | + $textarea=new HtmlFormTextarea($id, $caption, $value); |
|
183 | 183 | return $this->_prepareFormFields($textarea, $name, $attributes); |
184 | - }, $index,$attributes,"textarea"); |
|
184 | + }, $index, $attributes, "textarea"); |
|
185 | 185 | } |
186 | 186 | |
187 | - public function fieldAsHidden($index,$attributes=NULL){ |
|
188 | - if(!\is_array($attributes)){ |
|
187 | + public function fieldAsHidden($index, $attributes=NULL) { |
|
188 | + if (!\is_array($attributes)) { |
|
189 | 189 | $attributes=[]; |
190 | 190 | } |
191 | 191 | $attributes["inputType"]="hidden"; |
192 | - return $this->fieldAsInput($index,$attributes); |
|
192 | + return $this->fieldAsInput($index, $attributes); |
|
193 | 193 | } |
194 | 194 | |
195 | - public function fieldAsCheckbox($index,$attributes=NULL){ |
|
196 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($attributes){ |
|
197 | - if($caption===null || $caption==="") |
|
195 | + public function fieldAsCheckbox($index, $attributes=NULL) { |
|
196 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($attributes){ |
|
197 | + if ($caption===null || $caption==="") |
|
198 | 198 | $caption=""; |
199 | - $input=new HtmlFormCheckbox($id,$caption,$this->_instanceViewer->getIdentifier()); |
|
199 | + $input=new HtmlFormCheckbox($id, $caption, $this->_instanceViewer->getIdentifier()); |
|
200 | 200 | $input->setChecked(JString::isBooleanTrue($value)); |
201 | 201 | return $this->_prepareFormFields($input, $name, $attributes); |
202 | - }, $index,$attributes,"ck"); |
|
202 | + }, $index, $attributes, "ck"); |
|
203 | 203 | } |
204 | 204 | |
205 | - public function fieldAsDropDown($index,$elements=[],$multiple=false,$attributes=NULL){ |
|
206 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($elements,$multiple,$attributes){ |
|
207 | - $dd=new HtmlFormDropdown($id,$elements,$caption,$value); |
|
208 | - $dd->asSelect($name,$multiple); |
|
205 | + public function fieldAsDropDown($index, $elements=[], $multiple=false, $attributes=NULL) { |
|
206 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($elements, $multiple, $attributes){ |
|
207 | + $dd=new HtmlFormDropdown($id, $elements, $caption, $value); |
|
208 | + $dd->asSelect($name, $multiple); |
|
209 | 209 | return $this->_prepareFormFields($dd, $name, $attributes); |
210 | - }, $index,$attributes,"dd"); |
|
210 | + }, $index, $attributes, "dd"); |
|
211 | 211 | } |
212 | 212 | |
213 | - public function fieldAsMessage($index,$attributes=NULL){ |
|
214 | - return $this->_fieldAs(function($id,$name,$value,$caption){ |
|
215 | - $mess= new HtmlMessage("message-".$id,$caption); |
|
213 | + public function fieldAsMessage($index, $attributes=NULL) { |
|
214 | + return $this->_fieldAs(function($id, $name, $value, $caption) { |
|
215 | + $mess=new HtmlMessage("message-".$id, $caption); |
|
216 | 216 | $mess->addHeader($value); |
217 | 217 | return $mess; |
218 | - }, $index,$attributes,"message"); |
|
218 | + }, $index, $attributes, "message"); |
|
219 | 219 | } |
220 | 220 | |
221 | - public function fieldAsLink($index,$attributes=NULL){ |
|
222 | - return $this->_fieldAs(function($id,$name,$value,$caption){ |
|
223 | - $lnk= new HtmlLink("message-".$id,"#",$caption); |
|
221 | + public function fieldAsLink($index, $attributes=NULL) { |
|
222 | + return $this->_fieldAs(function($id, $name, $value, $caption) { |
|
223 | + $lnk=new HtmlLink("message-".$id, "#", $caption); |
|
224 | 224 | return $lnk; |
225 | - }, $index,$attributes,"link"); |
|
225 | + }, $index, $attributes, "link"); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | /**Change fields type |
229 | 229 | * @param array $types an array or associative array $type=>$attributes |
230 | 230 | */ |
231 | - public function fieldsAs(array $types){ |
|
231 | + public function fieldsAs(array $types) { |
|
232 | 232 | $i=0; |
233 | - if(JArray::isAssociative($types)){ |
|
234 | - foreach ($types as $type=>$attributes){ |
|
235 | - if(\is_int($type)) |
|
236 | - $this->fieldAs($i++,$attributes,[]); |
|
237 | - else{ |
|
238 | - $type=preg_replace('/\d/', '', $type ); |
|
239 | - $this->fieldAs($i++,$type,$attributes); |
|
233 | + if (JArray::isAssociative($types)) { |
|
234 | + foreach ($types as $type=>$attributes) { |
|
235 | + if (\is_int($type)) |
|
236 | + $this->fieldAs($i++, $attributes, []); |
|
237 | + else { |
|
238 | + $type=preg_replace('/\d/', '', $type); |
|
239 | + $this->fieldAs($i++, $type, $attributes); |
|
240 | 240 | } |
241 | 241 | } |
242 | - }else{ |
|
243 | - foreach ($types as $type){ |
|
244 | - $this->fieldAs($i++,$type); |
|
242 | + } else { |
|
243 | + foreach ($types as $type) { |
|
244 | + $this->fieldAs($i++, $type); |
|
245 | 245 | } |
246 | 246 | } |
247 | 247 | } |
248 | 248 | |
249 | - public function fieldAs($index,$type,$attributes=NULL){ |
|
249 | + public function fieldAs($index, $type, $attributes=NULL) { |
|
250 | 250 | $method="fieldAs".\ucfirst($type); |
251 | - if(\method_exists($this, $method)){ |
|
252 | - if(!\is_array($attributes)){ |
|
251 | + if (\method_exists($this, $method)) { |
|
252 | + if (!\is_array($attributes)) { |
|
253 | 253 | $attributes=[$index]; |
254 | - }else{ |
|
254 | + } else { |
|
255 | 255 | \array_unshift($attributes, $index); |
256 | 256 | } |
257 | - \call_user_func_array([$this,$method], $attributes); |
|
257 | + \call_user_func_array([$this, $method], $attributes); |
|
258 | 258 | } |
259 | 259 | } |
260 | 260 | |
261 | - public function fieldAsSubmit($index,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$attributes=NULL){ |
|
262 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($url,$responseElement,$cssStyle,$attributes){ |
|
263 | - $button=new HtmlButton($id,$caption,$cssStyle); |
|
264 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement,@$attributes["ajax"]); |
|
261 | + public function fieldAsSubmit($index, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $attributes=NULL) { |
|
262 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($url, $responseElement, $cssStyle, $attributes){ |
|
263 | + $button=new HtmlButton($id, $caption, $cssStyle); |
|
264 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement, @$attributes["ajax"]); |
|
265 | 265 | return $button; |
266 | - }, $index,$attributes,"submit"); |
|
266 | + }, $index, $attributes, "submit"); |
|
267 | 267 | } |
268 | 268 | |
269 | - public function fieldAsButton($index,$cssStyle=NULL,$attributes=NULL){ |
|
270 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($cssStyle){ |
|
271 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
269 | + public function fieldAsButton($index, $cssStyle=NULL, $attributes=NULL) { |
|
270 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($cssStyle){ |
|
271 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
272 | 272 | return $button; |
273 | - }, $index,$attributes,"button"); |
|
273 | + }, $index, $attributes, "button"); |
|
274 | 274 | } |
275 | 275 | } |
276 | 276 | \ No newline at end of file |
@@ -64,8 +64,7 @@ discard block |
||
64 | 64 | $rules=$attributes["rules"]; |
65 | 65 | if(\is_array($rules)){ |
66 | 66 | $element->addRules($rules); |
67 | - } |
|
68 | - else{ |
|
67 | + } else{ |
|
69 | 68 | $element->addRule($rules); |
70 | 69 | } |
71 | 70 | unset($attributes["rules"]); |
@@ -117,8 +116,9 @@ discard block |
||
117 | 116 | public function fieldAsLabel($index,$icon=NULL,$attributes=NULL){ |
118 | 117 | return $this->_fieldAs(function($id,$name,$value) use($icon){ |
119 | 118 | $lbl=new HtmlLabel($id,$value); |
120 | - if(isset($icon)) |
|
121 | - $lbl->addIcon($icon); |
|
119 | + if(isset($icon)) { |
|
120 | + $lbl->addIcon($icon); |
|
121 | + } |
|
122 | 122 | return $lbl; |
123 | 123 | }, $index,$attributes,"label"); |
124 | 124 | } |
@@ -126,8 +126,9 @@ discard block |
||
126 | 126 | public function fieldAsHeader($index,$niveau=1,$icon=NULL,$attributes=NULL){ |
127 | 127 | return $this->_fieldAs(function($id,$name,$value) use($niveau,$icon){ |
128 | 128 | $header=new HtmlHeader($id,$niveau,$value); |
129 | - if(isset($icon)) |
|
130 | - $header->asIcon($icon, $value); |
|
129 | + if(isset($icon)) { |
|
130 | + $header->asIcon($icon, $value); |
|
131 | + } |
|
131 | 132 | return $header; |
132 | 133 | }, $index,$attributes,"header"); |
133 | 134 | } |
@@ -135,7 +136,9 @@ discard block |
||
135 | 136 | |
136 | 137 | public function fieldAsImage($index,$size=Size::MINI,$circular=false){ |
137 | 138 | $this->setValueFunction($index,function($img) use($size,$circular){ |
138 | - $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular)$image->setCircular(); |
|
139 | + $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular) { |
|
140 | + $image->setCircular(); |
|
141 | + } |
|
139 | 142 | return $image; |
140 | 143 | }); |
141 | 144 | return $this; |
@@ -194,8 +197,9 @@ discard block |
||
194 | 197 | |
195 | 198 | public function fieldAsCheckbox($index,$attributes=NULL){ |
196 | 199 | return $this->_fieldAs(function($id,$name,$value,$caption) use($attributes){ |
197 | - if($caption===null || $caption==="") |
|
198 | - $caption=""; |
|
200 | + if($caption===null || $caption==="") { |
|
201 | + $caption=""; |
|
202 | + } |
|
199 | 203 | $input=new HtmlFormCheckbox($id,$caption,$this->_instanceViewer->getIdentifier()); |
200 | 204 | $input->setChecked(JString::isBooleanTrue($value)); |
201 | 205 | return $this->_prepareFormFields($input, $name, $attributes); |
@@ -232,14 +236,14 @@ discard block |
||
232 | 236 | $i=0; |
233 | 237 | if(JArray::isAssociative($types)){ |
234 | 238 | foreach ($types as $type=>$attributes){ |
235 | - if(\is_int($type)) |
|
236 | - $this->fieldAs($i++,$attributes,[]); |
|
237 | - else{ |
|
239 | + if(\is_int($type)) { |
|
240 | + $this->fieldAs($i++,$attributes,[]); |
|
241 | + } else{ |
|
238 | 242 | $type=preg_replace('/\d/', '', $type ); |
239 | 243 | $this->fieldAs($i++,$type,$attributes); |
240 | 244 | } |
241 | 245 | } |
242 | - }else{ |
|
246 | + } else{ |
|
243 | 247 | foreach ($types as $type){ |
244 | 248 | $this->fieldAs($i++,$type); |
245 | 249 | } |
@@ -251,7 +255,7 @@ discard block |
||
251 | 255 | if(\method_exists($this, $method)){ |
252 | 256 | if(!\is_array($attributes)){ |
253 | 257 | $attributes=[$index]; |
254 | - }else{ |
|
258 | + } else{ |
|
255 | 259 | \array_unshift($attributes, $index); |
256 | 260 | } |
257 | 261 | \call_user_func_array([$this,$method], $attributes); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | return $this->setParam("context", $value); |
22 | 22 | } |
23 | 23 | |
24 | - public function setOffset($offset=0){ |
|
24 | + public function setOffset($offset=0) { |
|
25 | 25 | return $this->setParam("offset", $offset); |
26 | 26 | } |
27 | 27 |
@@ -7,50 +7,50 @@ |
||
7 | 7 | |
8 | 8 | class HtmlSticky extends HtmlSemDoubleElement { |
9 | 9 | |
10 | - public function __construct($identifier,$context=NULL,$content=NULL) { |
|
10 | + public function __construct($identifier, $context=NULL, $content=NULL) { |
|
11 | 11 | parent::__construct($identifier, "div", "ui sticky", $content); |
12 | - if(isset($content)) |
|
12 | + if (isset($content)) |
|
13 | 13 | $this->setContext($context); |
14 | 14 | } |
15 | 15 | |
16 | - public function setContext($context){ |
|
16 | + public function setContext($context) { |
|
17 | 17 | $this->_params["context"]=$context; |
18 | 18 | return $this; |
19 | 19 | } |
20 | 20 | |
21 | - public function setFixed($value=NULL){ |
|
21 | + public function setFixed($value=NULL) { |
|
22 | 22 | $fixed="fixed"; |
23 | - if(isset($value)) |
|
23 | + if (isset($value)) |
|
24 | 24 | $fixed.=" ".$value; |
25 | - return $this->addToProperty("class",$fixed); |
|
25 | + return $this->addToProperty("class", $fixed); |
|
26 | 26 | } |
27 | 27 | |
28 | - public function setBound($value=NULL){ |
|
28 | + public function setBound($value=NULL) { |
|
29 | 29 | $bound="bound"; |
30 | - if(isset($value)) |
|
30 | + if (isset($value)) |
|
31 | 31 | $bound.=" ".$value; |
32 | - return $this->addToProperty("class",$bound); |
|
32 | + return $this->addToProperty("class", $bound); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
36 | 36 | * {@inheritDoc} |
37 | 37 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
38 | 38 | */ |
39 | - public function run(JsUtils $js){ |
|
39 | + public function run(JsUtils $js) { |
|
40 | 40 | parent::run($js); |
41 | - return $js->semantic()->sticky("#".$this->identifier,$this->_params); |
|
41 | + return $js->semantic()->sticky("#".$this->identifier, $this->_params); |
|
42 | 42 | } |
43 | 43 | |
44 | - public function setOffset($offset=0){ |
|
44 | + public function setOffset($offset=0) { |
|
45 | 45 | $this->_params["offset"]=$offset; |
46 | 46 | return $this; |
47 | 47 | } |
48 | 48 | |
49 | 49 | |
50 | 50 | |
51 | - public function setDebug($verbose=NULL){ |
|
51 | + public function setDebug($verbose=NULL) { |
|
52 | 52 | $this->_params["debug"]=true; |
53 | - if(isset($verbose)) |
|
53 | + if (isset($verbose)) |
|
54 | 54 | $this->_params["verbose"]=true; |
55 | 55 | return $this; |
56 | 56 | } |
@@ -9,8 +9,9 @@ discard block |
||
9 | 9 | |
10 | 10 | public function __construct($identifier,$context=NULL,$content=NULL) { |
11 | 11 | parent::__construct($identifier, "div", "ui sticky", $content); |
12 | - if(isset($content)) |
|
13 | - $this->setContext($context); |
|
12 | + if(isset($content)) { |
|
13 | + $this->setContext($context); |
|
14 | + } |
|
14 | 15 | } |
15 | 16 | |
16 | 17 | public function setContext($context){ |
@@ -20,15 +21,17 @@ discard block |
||
20 | 21 | |
21 | 22 | public function setFixed($value=NULL){ |
22 | 23 | $fixed="fixed"; |
23 | - if(isset($value)) |
|
24 | - $fixed.=" ".$value; |
|
24 | + if(isset($value)) { |
|
25 | + $fixed.=" ".$value; |
|
26 | + } |
|
25 | 27 | return $this->addToProperty("class",$fixed); |
26 | 28 | } |
27 | 29 | |
28 | 30 | public function setBound($value=NULL){ |
29 | 31 | $bound="bound"; |
30 | - if(isset($value)) |
|
31 | - $bound.=" ".$value; |
|
32 | + if(isset($value)) { |
|
33 | + $bound.=" ".$value; |
|
34 | + } |
|
32 | 35 | return $this->addToProperty("class",$bound); |
33 | 36 | } |
34 | 37 | |
@@ -50,8 +53,9 @@ discard block |
||
50 | 53 | |
51 | 54 | public function setDebug($verbose=NULL){ |
52 | 55 | $this->_params["debug"]=true; |
53 | - if(isset($verbose)) |
|
54 | - $this->_params["verbose"]=true; |
|
56 | + if(isset($verbose)) { |
|
57 | + $this->_params["verbose"]=true; |
|
58 | + } |
|
55 | 59 | return $this; |
56 | 60 | } |
57 | 61 | } |
58 | 62 | \ No newline at end of file |
@@ -19,10 +19,10 @@ discard block |
||
19 | 19 | $this->setLabel($label); |
20 | 20 | } |
21 | 21 | |
22 | - public function setChecked($value=true){ |
|
23 | - if($value===true){ |
|
22 | + public function setChecked($value=true) { |
|
23 | + if ($value===true) { |
|
24 | 24 | $this->getField()->setProperty("checked", "checked"); |
25 | - }else{ |
|
25 | + } else { |
|
26 | 26 | $this->getField()->removeProperty("checked"); |
27 | 27 | } |
28 | 28 | return $this; |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | * @return \Ajax\semantic\html\collections\form\AbstractHtmlFormRadioCheckbox |
85 | 85 | */ |
86 | 86 | public function attachEvent($selector, $action=NULL) { |
87 | - if (isset($action)||\is_numeric($action)===true) { |
|
87 | + if (isset($action) || \is_numeric($action)===true) { |
|
88 | 88 | $js='$("#%identifier%").checkbox("attach events", "'.$selector.'", "'.$action.'");'; |
89 | 89 | } else { |
90 | 90 | $js='$("#%identifier%").checkbox("attach events", "'.$selector.'");'; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function attachEvents($events=array()) { |
102 | 102 | if (\is_array($events)) { |
103 | - foreach ( $events as $action => $selector ) { |
|
103 | + foreach ($events as $action => $selector) { |
|
104 | 104 | $this->attachEvent($selector, $action); |
105 | 105 | } |
106 | 106 | } |
@@ -111,24 +111,24 @@ discard block |
||
111 | 111 | return $this->addToProperty("class", "fitted"); |
112 | 112 | } |
113 | 113 | |
114 | - public function setOnChecked($jsCode){ |
|
114 | + public function setOnChecked($jsCode) { |
|
115 | 115 | $this->_params["onChecked"]=$jsCode; |
116 | 116 | return $this; |
117 | 117 | } |
118 | 118 | |
119 | - public function setOnUnchecked($jsCode){ |
|
119 | + public function setOnUnchecked($jsCode) { |
|
120 | 120 | $this->_params["onUnchecked"]=$jsCode; |
121 | 121 | return $this; |
122 | 122 | } |
123 | 123 | |
124 | - public function setOnChange($jsCode){ |
|
124 | + public function setOnChange($jsCode) { |
|
125 | 125 | $this->_params["onChange"]=$jsCode; |
126 | 126 | return $this; |
127 | 127 | } |
128 | 128 | |
129 | 129 | public function run(JsUtils $js) { |
130 | - if(!isset($this->_bsComponent)) |
|
131 | - $this->_bsComponent=$js->semantic()->checkbox("#" . $this->identifier, $this->_params); |
|
130 | + if (!isset($this->_bsComponent)) |
|
131 | + $this->_bsComponent=$js->semantic()->checkbox("#".$this->identifier, $this->_params); |
|
132 | 132 | return parent::run($js); |
133 | 133 | } |
134 | 134 | } |
135 | 135 | \ No newline at end of file |
@@ -15,14 +15,15 @@ discard block |
||
15 | 15 | $field=new \Ajax\common\html\html5\HtmlInput($identifier, $inputType, $value); |
16 | 16 | $field->setProperty("name", $name); |
17 | 17 | $this->setField($field); |
18 | - if (isset($label)) |
|
19 | - $this->setLabel($label); |
|
18 | + if (isset($label)) { |
|
19 | + $this->setLabel($label); |
|
20 | + } |
|
20 | 21 | } |
21 | 22 | |
22 | 23 | public function setChecked($value=true){ |
23 | 24 | if($value===true){ |
24 | 25 | $this->getField()->setProperty("checked", "checked"); |
25 | - }else{ |
|
26 | + } else{ |
|
26 | 27 | $this->getField()->removeProperty("checked"); |
27 | 28 | } |
28 | 29 | return $this; |
@@ -51,8 +52,9 @@ discard block |
||
51 | 52 | * @return mixed |
52 | 53 | */ |
53 | 54 | public function getLabel() { |
54 | - if (\array_key_exists("label", $this->content)) |
|
55 | - return $this->content["label"]; |
|
55 | + if (\array_key_exists("label", $this->content)) { |
|
56 | + return $this->content["label"]; |
|
57 | + } |
|
56 | 58 | } |
57 | 59 | |
58 | 60 | /** |
@@ -127,8 +129,9 @@ discard block |
||
127 | 129 | } |
128 | 130 | |
129 | 131 | public function run(JsUtils $js) { |
130 | - if(!isset($this->_bsComponent)) |
|
131 | - $this->_bsComponent=$js->semantic()->checkbox("#" . $this->identifier, $this->_params); |
|
132 | + if(!isset($this->_bsComponent)) { |
|
133 | + $this->_bsComponent=$js->semantic()->checkbox("#" . $this->identifier, $this->_params); |
|
134 | + } |
|
132 | 135 | return parent::run($js); |
133 | 136 | } |
134 | 137 | } |
135 | 138 | \ 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 | } |
@@ -249,6 +249,9 @@ discard block |
||
249 | 249 | return $this; |
250 | 250 | } |
251 | 251 | |
252 | + /** |
|
253 | + * @param integer $index |
|
254 | + */ |
|
252 | 255 | public static function setIndex($index) { |
253 | 256 | self::$index=$index; |
254 | 257 | } |
@@ -307,7 +310,7 @@ discard block |
||
307 | 310 | * The $callback function can take the following arguments : $field=>the compiled field, $instance : the active instance of the object, $index: the field position |
308 | 311 | * @param int $index postion of the compiled field |
309 | 312 | * @param callable $callback function called after the field compilation |
310 | - * @return \Ajax\semantic\widgets\datatable\InstanceViewer |
|
313 | + * @return InstanceViewer |
|
311 | 314 | */ |
312 | 315 | public function afterCompile($index,$callback){ |
313 | 316 | $this->afterCompile[$index]=$callback; |
@@ -19,215 +19,215 @@ discard block |
||
19 | 19 | |
20 | 20 | public static $index=0; |
21 | 21 | |
22 | - public function __construct($identifier,$instance=NULL,$captions=NULL){ |
|
22 | + public function __construct($identifier, $instance=NULL, $captions=NULL) { |
|
23 | 23 | $this->widgetIdentifier=$identifier; |
24 | 24 | $this->values=[]; |
25 | 25 | $this->afterCompile=[]; |
26 | - if(isset($instance)) |
|
26 | + if (isset($instance)) |
|
27 | 27 | $this->setInstance($instance); |
28 | 28 | $this->setCaptions($captions); |
29 | 29 | $this->captionCallback=NULL; |
30 | - $this->defaultValueFunction=function($name,$value){return $value;}; |
|
30 | + $this->defaultValueFunction=function($name, $value) {return $value; }; |
|
31 | 31 | } |
32 | 32 | |
33 | - public function moveFieldTo($from,$to){ |
|
34 | - if(JArray::moveElementTo($this->visibleProperties, $from, $to)){ |
|
33 | + public function moveFieldTo($from, $to) { |
|
34 | + if (JArray::moveElementTo($this->visibleProperties, $from, $to)) { |
|
35 | 35 | return JArray::moveElementTo($this->values, $from, $to); |
36 | 36 | } |
37 | 37 | return false; |
38 | 38 | } |
39 | 39 | |
40 | - public function swapFields($index1,$index2){ |
|
41 | - if(JArray::swapElements($this->visibleProperties, $index1, $index2)){ |
|
40 | + public function swapFields($index1, $index2) { |
|
41 | + if (JArray::swapElements($this->visibleProperties, $index1, $index2)) { |
|
42 | 42 | return JArray::swapElements($this->values, $index1, $index2); |
43 | 43 | } |
44 | 44 | return false; |
45 | 45 | } |
46 | 46 | |
47 | - public function removeField($index){ |
|
48 | - \array_splice($this->visibleProperties,$index,1); |
|
49 | - \array_splice($this->values,$index,1); |
|
50 | - \array_splice($this->captions,$index,1); |
|
47 | + public function removeField($index) { |
|
48 | + \array_splice($this->visibleProperties, $index, 1); |
|
49 | + \array_splice($this->values, $index, 1); |
|
50 | + \array_splice($this->captions, $index, 1); |
|
51 | 51 | return $this; |
52 | 52 | } |
53 | 53 | |
54 | - public function getValues(){ |
|
54 | + public function getValues() { |
|
55 | 55 | $values=[]; |
56 | 56 | $index=0; |
57 | 57 | $count=$this->count(); |
58 | - while($index<$count){ |
|
58 | + while ($index<$count) { |
|
59 | 59 | $values[]=$this->getValue($index++); |
60 | 60 | } |
61 | 61 | return $values; |
62 | 62 | } |
63 | 63 | |
64 | - public function getIdentifier($index=NULL){ |
|
65 | - if(!isset($index)) |
|
64 | + public function getIdentifier($index=NULL) { |
|
65 | + if (!isset($index)) |
|
66 | 66 | $index=self::$index; |
67 | 67 | $value=$index; |
68 | - if(isset($this->values["identifier"])){ |
|
69 | - if(\is_string($this->values["identifier"])) |
|
68 | + if (isset($this->values["identifier"])) { |
|
69 | + if (\is_string($this->values["identifier"])) |
|
70 | 70 | $value=JReflection::callMethod($this->instance, $this->values["identifier"], []); |
71 | 71 | else |
72 | - $value=$this->values["identifier"]($index,$this->instance); |
|
72 | + $value=$this->values["identifier"]($index, $this->instance); |
|
73 | 73 | } |
74 | 74 | return $value; |
75 | 75 | } |
76 | 76 | |
77 | - public function getValue($index){ |
|
77 | + public function getValue($index) { |
|
78 | 78 | $property=$this->properties[$index]; |
79 | 79 | return $this->_getValue($property, $index); |
80 | 80 | } |
81 | 81 | |
82 | - protected function _beforeAddProperty($index,&$field){ |
|
82 | + protected function _beforeAddProperty($index, &$field) { |
|
83 | 83 | |
84 | 84 | } |
85 | 85 | |
86 | - protected function _getDefaultValue($name,$value,$index){ |
|
86 | + protected function _getDefaultValue($name, $value, $index) { |
|
87 | 87 | $func=$this->defaultValueFunction; |
88 | - return $func($name,$value,$index,$this->instance); |
|
88 | + return $func($name, $value, $index, $this->instance); |
|
89 | 89 | } |
90 | 90 | |
91 | - protected function _getPropertyValue(\ReflectionProperty $property,$index){ |
|
91 | + protected function _getPropertyValue(\ReflectionProperty $property, $index) { |
|
92 | 92 | $property->setAccessible(true); |
93 | 93 | return $property->getValue($this->instance); |
94 | 94 | } |
95 | 95 | |
96 | - protected function _getValue($property,$index){ |
|
96 | + protected function _getValue($property, $index) { |
|
97 | 97 | $value=null; |
98 | 98 | $propertyName=$property; |
99 | - if($property instanceof \ReflectionProperty){ |
|
99 | + if ($property instanceof \ReflectionProperty) { |
|
100 | 100 | $value=$this->_getPropertyValue($property, $index); |
101 | 101 | $propertyName=$property->getName(); |
102 | - }elseif(\is_callable($property)) |
|
102 | + }elseif (\is_callable($property)) |
|
103 | 103 | $value=$property($this->instance); |
104 | - elseif(\is_array($property)){ |
|
105 | - $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property); |
|
104 | + elseif (\is_array($property)) { |
|
105 | + $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index); }, $property); |
|
106 | 106 | $value=\implode("", $values); |
107 | - }elseif(\is_string($property)){ |
|
107 | + }elseif (\is_string($property)) { |
|
108 | 108 | $value=$property; |
109 | - if(isset($this->instance->{$property})){ |
|
109 | + if (isset($this->instance->{$property})) { |
|
110 | 110 | $value=$this->instance->{$property}; |
111 | - }elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){ |
|
111 | + }elseif (\method_exists($this->instance, $getter=JReflection::getterName($property))) { |
|
112 | 112 | $value=JReflection::callMethod($this->instance, $getter, []); |
113 | 113 | } |
114 | 114 | } |
115 | 115 | return $this->_postGetValue($index, $propertyName, $value); |
116 | 116 | } |
117 | 117 | |
118 | - protected function _postGetValue($index,$propertyName,$value){ |
|
119 | - if(isset($this->values[$index])){ |
|
120 | - $value= $this->values[$index]($value,$this->instance,$index); |
|
121 | - }else{ |
|
122 | - $value=$this->_getDefaultValue($propertyName,$value, $index); |
|
118 | + protected function _postGetValue($index, $propertyName, $value) { |
|
119 | + if (isset($this->values[$index])) { |
|
120 | + $value=$this->values[$index]($value, $this->instance, $index); |
|
121 | + } else { |
|
122 | + $value=$this->_getDefaultValue($propertyName, $value, $index); |
|
123 | 123 | } |
124 | - if(isset($this->afterCompile[$index])){ |
|
125 | - if(\is_callable($this->afterCompile[$index])){ |
|
126 | - $this->afterCompile[$index]($value,$this->instance,$index); |
|
124 | + if (isset($this->afterCompile[$index])) { |
|
125 | + if (\is_callable($this->afterCompile[$index])) { |
|
126 | + $this->afterCompile[$index]($value, $this->instance, $index); |
|
127 | 127 | } |
128 | 128 | } |
129 | 129 | return $value; |
130 | 130 | } |
131 | 131 | |
132 | - public function insertField($index,$field){ |
|
133 | - array_splice( $this->visibleProperties, $index, 0, $field ); |
|
132 | + public function insertField($index, $field) { |
|
133 | + array_splice($this->visibleProperties, $index, 0, $field); |
|
134 | 134 | return $this; |
135 | 135 | } |
136 | 136 | |
137 | - public function insertInField($index,$field){ |
|
137 | + public function insertInField($index, $field) { |
|
138 | 138 | $vb=$this->visibleProperties; |
139 | - if(isset($vb[$index])){ |
|
140 | - if(\is_array($vb[$index])){ |
|
139 | + if (isset($vb[$index])) { |
|
140 | + if (\is_array($vb[$index])) { |
|
141 | 141 | $this->visibleProperties[$index][]=$field; |
142 | - }else{ |
|
143 | - $this->visibleProperties[$index]=[$vb[$index],$field]; |
|
142 | + } else { |
|
143 | + $this->visibleProperties[$index]=[$vb[$index], $field]; |
|
144 | 144 | } |
145 | - }else{ |
|
145 | + } else { |
|
146 | 146 | return $this->insertField($index, $field); |
147 | 147 | } |
148 | 148 | return $this; |
149 | 149 | } |
150 | 150 | |
151 | - public function addField($field){ |
|
151 | + public function addField($field) { |
|
152 | 152 | $this->visibleProperties[]=$field; |
153 | 153 | return $this; |
154 | 154 | } |
155 | 155 | |
156 | - public function count(){ |
|
156 | + public function count() { |
|
157 | 157 | return \sizeof($this->properties); |
158 | 158 | } |
159 | 159 | |
160 | - public function visiblePropertiesCount(){ |
|
160 | + public function visiblePropertiesCount() { |
|
161 | 161 | return \sizeof($this->visibleProperties); |
162 | 162 | } |
163 | 163 | |
164 | - public function getProperty($index){ |
|
164 | + public function getProperty($index) { |
|
165 | 165 | return $this->properties[$index]; |
166 | 166 | } |
167 | 167 | |
168 | - public function getFieldName($index){ |
|
168 | + public function getFieldName($index) { |
|
169 | 169 | $property=$this->getProperty($index); |
170 | - if($property instanceof \ReflectionProperty){ |
|
170 | + if ($property instanceof \ReflectionProperty) { |
|
171 | 171 | $result=$property->getName(); |
172 | - }elseif(\is_callable($property)){ |
|
172 | + }elseif (\is_callable($property)) { |
|
173 | 173 | $result=$this->visibleProperties[$index]; |
174 | - }else{ |
|
174 | + } else { |
|
175 | 175 | $result=$property; |
176 | 176 | } |
177 | 177 | return $result; |
178 | 178 | } |
179 | 179 | |
180 | 180 | |
181 | - protected function showableProperty(\ReflectionProperty $rProperty){ |
|
182 | - return JString::startswith($rProperty->getName(),"_")===false; |
|
181 | + protected function showableProperty(\ReflectionProperty $rProperty) { |
|
182 | + return JString::startswith($rProperty->getName(), "_")===false; |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | public function setInstance($instance) { |
186 | - if(\is_string($instance)){ |
|
186 | + if (\is_string($instance)) { |
|
187 | 187 | $instance=new $instance(); |
188 | 188 | } |
189 | 189 | $this->instance=$instance; |
190 | 190 | $this->properties=[]; |
191 | 191 | $this->reflect=new \ReflectionClass($instance); |
192 | - if(\sizeof($this->visibleProperties)===0){ |
|
192 | + if (\sizeof($this->visibleProperties)===0) { |
|
193 | 193 | $this->properties=$this->getDefaultProperties(); |
194 | - }else{ |
|
195 | - foreach ($this->visibleProperties as $property){ |
|
194 | + } else { |
|
195 | + foreach ($this->visibleProperties as $property) { |
|
196 | 196 | $this->setInstanceProperty($property); |
197 | 197 | } |
198 | 198 | } |
199 | 199 | return $this; |
200 | 200 | } |
201 | 201 | |
202 | - private function setInstanceProperty($property){ |
|
203 | - if(\is_callable($property)){ |
|
202 | + private function setInstanceProperty($property) { |
|
203 | + if (\is_callable($property)) { |
|
204 | 204 | $this->properties[]=$property; |
205 | - }elseif(\is_string($property)){ |
|
206 | - try{ |
|
205 | + }elseif (\is_string($property)) { |
|
206 | + try { |
|
207 | 207 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
208 | 208 | $rProperty=$this->reflect->getProperty($property); |
209 | 209 | $this->properties[]=$rProperty; |
210 | - }catch(\Exception $e){ |
|
210 | + }catch (\Exception $e) { |
|
211 | 211 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
212 | 212 | $this->properties[]=$property; |
213 | 213 | } |
214 | - }elseif(\is_int($property)){ |
|
214 | + }elseif (\is_int($property)) { |
|
215 | 215 | $props=$this->getDefaultProperties(); |
216 | - if(isset($props[$property])) |
|
216 | + if (isset($props[$property])) |
|
217 | 217 | $this->properties[]=$props[$property]; |
218 | 218 | else |
219 | 219 | $this->properties[]=$property; |
220 | - }else{ |
|
220 | + } else { |
|
221 | 221 | $this->properties[]=$property; |
222 | 222 | } |
223 | 223 | } |
224 | 224 | |
225 | - protected function getDefaultProperties(){ |
|
225 | + protected function getDefaultProperties() { |
|
226 | 226 | $result=[]; |
227 | 227 | $properties=$this->reflect->getProperties(); |
228 | - foreach ($properties as $property){ |
|
228 | + foreach ($properties as $property) { |
|
229 | 229 | $showable=$this->showableProperty($property); |
230 | - if($showable!==false){ |
|
230 | + if ($showable!==false) { |
|
231 | 231 | $result[]=$property; |
232 | 232 | } |
233 | 233 | } |
@@ -239,12 +239,12 @@ discard block |
||
239 | 239 | return $this; |
240 | 240 | } |
241 | 241 | |
242 | - public function setValueFunction($index,$callback){ |
|
242 | + public function setValueFunction($index, $callback) { |
|
243 | 243 | $this->values[$index]=$callback; |
244 | 244 | return $this; |
245 | 245 | } |
246 | 246 | |
247 | - public function setIdentifierFunction($callback){ |
|
247 | + public function setIdentifierFunction($callback) { |
|
248 | 248 | $this->values["identifier"]=$callback; |
249 | 249 | return $this; |
250 | 250 | } |
@@ -257,41 +257,41 @@ discard block |
||
257 | 257 | return $this->properties; |
258 | 258 | } |
259 | 259 | |
260 | - public function getCaption($index){ |
|
261 | - if(isset($this->captions[$index])){ |
|
260 | + public function getCaption($index) { |
|
261 | + if (isset($this->captions[$index])) { |
|
262 | 262 | return $this->captions[$index]; |
263 | 263 | } |
264 | - if($this->properties[$index] instanceof \ReflectionProperty) |
|
264 | + if ($this->properties[$index] instanceof \ReflectionProperty) |
|
265 | 265 | return $this->properties[$index]->getName(); |
266 | - elseif(\is_callable($this->properties[$index])) |
|
266 | + elseif (\is_callable($this->properties[$index])) |
|
267 | 267 | return ""; |
268 | 268 | else |
269 | 269 | return $this->properties[$index]; |
270 | 270 | } |
271 | 271 | |
272 | - public function getCaptions(){ |
|
273 | - if(isset($this->captions)){ |
|
274 | - $captions= \array_values($this->captions); |
|
275 | - for($i=\sizeof($captions);$i<$this->count();$i++){ |
|
272 | + public function getCaptions() { |
|
273 | + if (isset($this->captions)) { |
|
274 | + $captions=\array_values($this->captions); |
|
275 | + for ($i=\sizeof($captions); $i<$this->count(); $i++) { |
|
276 | 276 | $captions[]=""; |
277 | 277 | } |
278 | - }else{ |
|
278 | + } else { |
|
279 | 279 | $captions=[]; |
280 | 280 | $index=0; |
281 | 281 | $count=$this->count(); |
282 | - while($index<$count){ |
|
282 | + while ($index<$count) { |
|
283 | 283 | $captions[]=$this->getCaption($index++); |
284 | 284 | } |
285 | 285 | } |
286 | - if(isset($this->captionCallback) && \is_callable($this->captionCallback)){ |
|
286 | + if (isset($this->captionCallback) && \is_callable($this->captionCallback)) { |
|
287 | 287 | $callback=$this->captionCallback; |
288 | - $callback($captions,$this->instance); |
|
288 | + $callback($captions, $this->instance); |
|
289 | 289 | } |
290 | 290 | return $captions; |
291 | 291 | } |
292 | 292 | |
293 | - public function setCaption($index,$caption){ |
|
294 | - if(isset($this->captions)===false) |
|
293 | + public function setCaption($index, $caption) { |
|
294 | + if (isset($this->captions)===false) |
|
295 | 295 | $this->captions=[]; |
296 | 296 | $this->captions[$index]=$caption; |
297 | 297 | return $this; |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | * @param callable $callback function called after the field compilation |
310 | 310 | * @return \Ajax\semantic\widgets\datatable\InstanceViewer |
311 | 311 | */ |
312 | - public function afterCompile($index,$callback){ |
|
312 | + public function afterCompile($index, $callback) { |
|
313 | 313 | $this->afterCompile[$index]=$callback; |
314 | 314 | return $this; |
315 | 315 | } |
@@ -23,8 +23,9 @@ discard block |
||
23 | 23 | $this->widgetIdentifier=$identifier; |
24 | 24 | $this->values=[]; |
25 | 25 | $this->afterCompile=[]; |
26 | - if(isset($instance)) |
|
27 | - $this->setInstance($instance); |
|
26 | + if(isset($instance)) { |
|
27 | + $this->setInstance($instance); |
|
28 | + } |
|
28 | 29 | $this->setCaptions($captions); |
29 | 30 | $this->captionCallback=NULL; |
30 | 31 | $this->defaultValueFunction=function($name,$value){return $value;}; |
@@ -62,14 +63,16 @@ discard block |
||
62 | 63 | } |
63 | 64 | |
64 | 65 | public function getIdentifier($index=NULL){ |
65 | - if(!isset($index)) |
|
66 | - $index=self::$index; |
|
66 | + if(!isset($index)) { |
|
67 | + $index=self::$index; |
|
68 | + } |
|
67 | 69 | $value=$index; |
68 | 70 | if(isset($this->values["identifier"])){ |
69 | - if(\is_string($this->values["identifier"])) |
|
70 | - $value=JReflection::callMethod($this->instance, $this->values["identifier"], []); |
|
71 | - else |
|
72 | - $value=$this->values["identifier"]($index,$this->instance); |
|
71 | + if(\is_string($this->values["identifier"])) { |
|
72 | + $value=JReflection::callMethod($this->instance, $this->values["identifier"], []); |
|
73 | + } else { |
|
74 | + $value=$this->values["identifier"]($index,$this->instance); |
|
75 | + } |
|
73 | 76 | } |
74 | 77 | return $value; |
75 | 78 | } |
@@ -99,16 +102,16 @@ discard block |
||
99 | 102 | if($property instanceof \ReflectionProperty){ |
100 | 103 | $value=$this->_getPropertyValue($property, $index); |
101 | 104 | $propertyName=$property->getName(); |
102 | - }elseif(\is_callable($property)) |
|
103 | - $value=$property($this->instance); |
|
104 | - elseif(\is_array($property)){ |
|
105 | + } elseif(\is_callable($property)) { |
|
106 | + $value=$property($this->instance); |
|
107 | + } elseif(\is_array($property)){ |
|
105 | 108 | $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property); |
106 | 109 | $value=\implode("", $values); |
107 | - }elseif(\is_string($property)){ |
|
110 | + } elseif(\is_string($property)){ |
|
108 | 111 | $value=$property; |
109 | 112 | if(isset($this->instance->{$property})){ |
110 | 113 | $value=$this->instance->{$property}; |
111 | - }elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){ |
|
114 | + } elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){ |
|
112 | 115 | $value=JReflection::callMethod($this->instance, $getter, []); |
113 | 116 | } |
114 | 117 | } |
@@ -118,7 +121,7 @@ discard block |
||
118 | 121 | protected function _postGetValue($index,$propertyName,$value){ |
119 | 122 | if(isset($this->values[$index])){ |
120 | 123 | $value= $this->values[$index]($value,$this->instance,$index); |
121 | - }else{ |
|
124 | + } else{ |
|
122 | 125 | $value=$this->_getDefaultValue($propertyName,$value, $index); |
123 | 126 | } |
124 | 127 | if(isset($this->afterCompile[$index])){ |
@@ -139,10 +142,10 @@ discard block |
||
139 | 142 | if(isset($vb[$index])){ |
140 | 143 | if(\is_array($vb[$index])){ |
141 | 144 | $this->visibleProperties[$index][]=$field; |
142 | - }else{ |
|
145 | + } else{ |
|
143 | 146 | $this->visibleProperties[$index]=[$vb[$index],$field]; |
144 | 147 | } |
145 | - }else{ |
|
148 | + } else{ |
|
146 | 149 | return $this->insertField($index, $field); |
147 | 150 | } |
148 | 151 | return $this; |
@@ -169,9 +172,9 @@ discard block |
||
169 | 172 | $property=$this->getProperty($index); |
170 | 173 | if($property instanceof \ReflectionProperty){ |
171 | 174 | $result=$property->getName(); |
172 | - }elseif(\is_callable($property)){ |
|
175 | + } elseif(\is_callable($property)){ |
|
173 | 176 | $result=$this->visibleProperties[$index]; |
174 | - }else{ |
|
177 | + } else{ |
|
175 | 178 | $result=$property; |
176 | 179 | } |
177 | 180 | return $result; |
@@ -191,7 +194,7 @@ discard block |
||
191 | 194 | $this->reflect=new \ReflectionClass($instance); |
192 | 195 | if(\sizeof($this->visibleProperties)===0){ |
193 | 196 | $this->properties=$this->getDefaultProperties(); |
194 | - }else{ |
|
197 | + } else{ |
|
195 | 198 | foreach ($this->visibleProperties as $property){ |
196 | 199 | $this->setInstanceProperty($property); |
197 | 200 | } |
@@ -202,22 +205,23 @@ discard block |
||
202 | 205 | private function setInstanceProperty($property){ |
203 | 206 | if(\is_callable($property)){ |
204 | 207 | $this->properties[]=$property; |
205 | - }elseif(\is_string($property)){ |
|
208 | + } elseif(\is_string($property)){ |
|
206 | 209 | try{ |
207 | 210 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
208 | 211 | $rProperty=$this->reflect->getProperty($property); |
209 | 212 | $this->properties[]=$rProperty; |
210 | - }catch(\Exception $e){ |
|
213 | + } catch(\Exception $e){ |
|
211 | 214 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
212 | 215 | $this->properties[]=$property; |
213 | 216 | } |
214 | - }elseif(\is_int($property)){ |
|
217 | + } elseif(\is_int($property)){ |
|
215 | 218 | $props=$this->getDefaultProperties(); |
216 | - if(isset($props[$property])) |
|
217 | - $this->properties[]=$props[$property]; |
|
218 | - else |
|
219 | - $this->properties[]=$property; |
|
220 | - }else{ |
|
219 | + if(isset($props[$property])) { |
|
220 | + $this->properties[]=$props[$property]; |
|
221 | + } else { |
|
222 | + $this->properties[]=$property; |
|
223 | + } |
|
224 | + } else{ |
|
221 | 225 | $this->properties[]=$property; |
222 | 226 | } |
223 | 227 | } |
@@ -261,12 +265,13 @@ discard block |
||
261 | 265 | if(isset($this->captions[$index])){ |
262 | 266 | return $this->captions[$index]; |
263 | 267 | } |
264 | - if($this->properties[$index] instanceof \ReflectionProperty) |
|
265 | - return $this->properties[$index]->getName(); |
|
266 | - elseif(\is_callable($this->properties[$index])) |
|
267 | - return ""; |
|
268 | - else |
|
269 | - return $this->properties[$index]; |
|
268 | + if($this->properties[$index] instanceof \ReflectionProperty) { |
|
269 | + return $this->properties[$index]->getName(); |
|
270 | + } elseif(\is_callable($this->properties[$index])) { |
|
271 | + return ""; |
|
272 | + } else { |
|
273 | + return $this->properties[$index]; |
|
274 | + } |
|
270 | 275 | } |
271 | 276 | |
272 | 277 | public function getCaptions(){ |
@@ -275,7 +280,7 @@ discard block |
||
275 | 280 | for($i=\sizeof($captions);$i<$this->count();$i++){ |
276 | 281 | $captions[]=""; |
277 | 282 | } |
278 | - }else{ |
|
283 | + } else{ |
|
279 | 284 | $captions=[]; |
280 | 285 | $index=0; |
281 | 286 | $count=$this->count(); |
@@ -291,8 +296,9 @@ discard block |
||
291 | 296 | } |
292 | 297 | |
293 | 298 | public function setCaption($index,$caption){ |
294 | - if(isset($this->captions)===false) |
|
295 | - $this->captions=[]; |
|
299 | + if(isset($this->captions)===false) { |
|
300 | + $this->captions=[]; |
|
301 | + } |
|
296 | 302 | $this->captions[$index]=$caption; |
297 | 303 | return $this; |
298 | 304 | } |
@@ -13,27 +13,27 @@ discard block |
||
13 | 13 | * @author jc |
14 | 14 | * |
15 | 15 | */ |
16 | -trait FormTrait{ |
|
16 | +trait FormTrait { |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @return HtmlForm |
20 | 20 | */ |
21 | 21 | abstract protected function getForm(); |
22 | 22 | |
23 | - protected function addCompoValidation($compo,$field){ |
|
23 | + protected function addCompoValidation($compo, $field) { |
|
24 | 24 | $validation=$field->getValidation(); |
25 | - if(isset($validation)){ |
|
25 | + if (isset($validation)) { |
|
26 | 26 | $validation->setIdentifier($field->getDataField()->getIdentifier()); |
27 | 27 | $compo->addFieldValidation($validation); |
28 | 28 | } |
29 | 29 | return $compo; |
30 | 30 | } |
31 | 31 | |
32 | - protected function _runValidationParams(&$compo,JsUtils $js=NULL){ |
|
32 | + protected function _runValidationParams(&$compo, JsUtils $js=NULL) { |
|
33 | 33 | $form=$this->getForm(); |
34 | 34 | $params=$form->getValidationParams(); |
35 | - if(isset($params["_ajaxSubmit"])){ |
|
36 | - $compilation=$this->_compileAjaxSubmit($params["_ajaxSubmit"],$js); |
|
35 | + if (isset($params["_ajaxSubmit"])) { |
|
36 | + $compilation=$this->_compileAjaxSubmit($params["_ajaxSubmit"], $js); |
|
37 | 37 | $this->onSuccess($compilation); |
38 | 38 | $form->removeValidationParam("_ajaxSubmit"); |
39 | 39 | } |
@@ -42,16 +42,16 @@ discard block |
||
42 | 42 | $form->addEventsOnRun($js); |
43 | 43 | } |
44 | 44 | |
45 | - protected function _compileAjaxSubmit($ajaxSubmit,JsUtils $js=null){ |
|
45 | + protected function _compileAjaxSubmit($ajaxSubmit, JsUtils $js=null) { |
|
46 | 46 | $compilation=""; |
47 | - if(\is_array($ajaxSubmit)){ |
|
48 | - foreach ($ajaxSubmit as $ajaxSubmitItem){ |
|
47 | + if (\is_array($ajaxSubmit)) { |
|
48 | + foreach ($ajaxSubmit as $ajaxSubmitItem) { |
|
49 | 49 | $compilation.=$ajaxSubmitItem->compile($js); |
50 | 50 | } |
51 | - }elseif($ajaxSubmit instanceof AjaxCall){ |
|
51 | + }elseif ($ajaxSubmit instanceof AjaxCall) { |
|
52 | 52 | $compilation=$ajaxSubmit->compile($js); |
53 | 53 | } |
54 | - $compilation=str_ireplace("\"","%quote%", $compilation); |
|
54 | + $compilation=str_ireplace("\"", "%quote%", $compilation); |
|
55 | 55 | return $compilation; |
56 | 56 | } |
57 | 57 | |
@@ -64,14 +64,14 @@ discard block |
||
64 | 64 | return $this; |
65 | 65 | } |
66 | 66 | |
67 | - public function setAttached($value=true){ |
|
67 | + public function setAttached($value=true) { |
|
68 | 68 | $form=$this->getForm(); |
69 | - if($value) |
|
70 | - $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
69 | + if ($value) |
|
70 | + $form->addToPropertyCtrl("class", "attached", array("attached")); |
|
71 | 71 | return $form; |
72 | 72 | } |
73 | 73 | |
74 | - public function addErrorMessage(){ |
|
74 | + public function addErrorMessage() { |
|
75 | 75 | return $this->getForm()->addContent((new HtmlMessage(""))->setError()); |
76 | 76 | } |
77 | 77 | |
@@ -87,47 +87,47 @@ discard block |
||
87 | 87 | * @param array $parameters |
88 | 88 | * @return HtmlForm |
89 | 89 | */ |
90 | - public function submitOn($event,$identifierOrElement,$url,$responseElement,$parameters=NULL){ |
|
90 | + public function submitOn($event, $identifierOrElement, $url, $responseElement, $parameters=NULL) { |
|
91 | 91 | $form=$this->getForm(); |
92 | - if($identifierOrElement instanceof BaseHtml) |
|
92 | + if ($identifierOrElement instanceof BaseHtml) |
|
93 | 93 | $elem=$identifierOrElement; |
94 | 94 | else |
95 | 95 | $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
96 | - if(isset($elem)){ |
|
97 | - $this->_buttonAsSubmit($elem, $event,$url,$responseElement,$parameters); |
|
96 | + if (isset($elem)) { |
|
97 | + $this->_buttonAsSubmit($elem, $event, $url, $responseElement, $parameters); |
|
98 | 98 | } |
99 | 99 | return $form; |
100 | 100 | } |
101 | 101 | |
102 | - public function submitOnClick($identifier,$url,$responseElement,$parameters=NULL){ |
|
103 | - return $this->submitOn("click", $identifier, $url, $responseElement,$parameters); |
|
102 | + public function submitOnClick($identifier, $url, $responseElement, $parameters=NULL) { |
|
103 | + return $this->submitOn("click", $identifier, $url, $responseElement, $parameters); |
|
104 | 104 | } |
105 | 105 | |
106 | - public function addSubmit($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$parameters=NULL){ |
|
107 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
108 | - return $this->_buttonAsSubmit($bt, "click",$url,$responseElement,$parameters); |
|
106 | + public function addSubmit($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $parameters=NULL) { |
|
107 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
108 | + return $this->_buttonAsSubmit($bt, "click", $url, $responseElement, $parameters); |
|
109 | 109 | } |
110 | 110 | |
111 | - protected function _buttonAsSubmit(BaseHtml &$button,$event,$url,$responseElement=NULL,$parameters=NULL){ |
|
111 | + protected function _buttonAsSubmit(BaseHtml&$button, $event, $url, $responseElement=NULL, $parameters=NULL) { |
|
112 | 112 | $form=$this->getForm(); |
113 | - if(isset($url) && isset($responseElement)){ |
|
114 | - $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');",true,true); |
|
115 | - $this->setSubmitParams($url,$responseElement,$parameters); |
|
113 | + if (isset($url) && isset($responseElement)) { |
|
114 | + $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');", true, true); |
|
115 | + $this->setSubmitParams($url, $responseElement, $parameters); |
|
116 | 116 | } |
117 | 117 | return $button; |
118 | 118 | } |
119 | 119 | |
120 | - public function setSubmitParams($url,$responseElement=NULL,$parameters=NULL){ |
|
120 | + public function setSubmitParams($url, $responseElement=NULL, $parameters=NULL) { |
|
121 | 121 | $form=$this->getForm(); |
122 | - $params=["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url,"stopPropagation"=>true]; |
|
123 | - if(\is_array($parameters)) |
|
124 | - $params=\array_merge($params,$parameters); |
|
122 | + $params=["form"=>$form->getIdentifier(), "responseElement"=>$responseElement, "url"=>$url, "stopPropagation"=>true]; |
|
123 | + if (\is_array($parameters)) |
|
124 | + $params=\array_merge($params, $parameters); |
|
125 | 125 | $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", $params)); |
126 | 126 | return $this; |
127 | 127 | } |
128 | 128 | |
129 | - public function addReset($identifier,$value,$cssStyle=NULL){ |
|
130 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
129 | + public function addReset($identifier, $value, $cssStyle=NULL) { |
|
130 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
131 | 131 | $bt->setProperty("type", "reset"); |
132 | 132 | return $bt; |
133 | 133 | } |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * @param string $jsCode |
138 | 138 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
139 | 139 | */ |
140 | - public function onValid($jsCode){ |
|
140 | + public function onValid($jsCode) { |
|
141 | 141 | $form=$this->getForm(); |
142 | 142 | $form->addValidationParam("onValid", "%function(){".$jsCode."}%"); |
143 | 143 | return $form; |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | * @param string $jsCode can use event and fields parameters |
149 | 149 | * @return HtmlForm |
150 | 150 | */ |
151 | - public function onSuccess($jsCode){ |
|
151 | + public function onSuccess($jsCode) { |
|
152 | 152 | $form=$this->getForm(); |
153 | - $form->addValidationParam("onSuccess", $jsCode,"%function(event,fields){","}%"); |
|
153 | + $form->addValidationParam("onSuccess", $jsCode, "%function(event,fields){", "}%"); |
|
154 | 154 | return $form; |
155 | 155 | } |
156 | 156 | } |
157 | 157 | \ No newline at end of file |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | foreach ($ajaxSubmit as $ajaxSubmitItem){ |
49 | 49 | $compilation.=$ajaxSubmitItem->compile($js); |
50 | 50 | } |
51 | - }elseif($ajaxSubmit instanceof AjaxCall){ |
|
51 | + } elseif($ajaxSubmit instanceof AjaxCall){ |
|
52 | 52 | $compilation=$ajaxSubmit->compile($js); |
53 | 53 | } |
54 | 54 | $compilation=str_ireplace("\"","%quote%", $compilation); |
@@ -66,8 +66,9 @@ discard block |
||
66 | 66 | |
67 | 67 | public function setAttached($value=true){ |
68 | 68 | $form=$this->getForm(); |
69 | - if($value) |
|
70 | - $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
69 | + if($value) { |
|
70 | + $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
71 | + } |
|
71 | 72 | return $form; |
72 | 73 | } |
73 | 74 | |
@@ -89,10 +90,11 @@ discard block |
||
89 | 90 | */ |
90 | 91 | public function submitOn($event,$identifierOrElement,$url,$responseElement,$parameters=NULL){ |
91 | 92 | $form=$this->getForm(); |
92 | - if($identifierOrElement instanceof BaseHtml) |
|
93 | - $elem=$identifierOrElement; |
|
94 | - else |
|
95 | - $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
|
93 | + if($identifierOrElement instanceof BaseHtml) { |
|
94 | + $elem=$identifierOrElement; |
|
95 | + } else { |
|
96 | + $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
|
97 | + } |
|
96 | 98 | if(isset($elem)){ |
97 | 99 | $this->_buttonAsSubmit($elem, $event,$url,$responseElement,$parameters); |
98 | 100 | } |
@@ -120,8 +122,9 @@ discard block |
||
120 | 122 | public function setSubmitParams($url,$responseElement=NULL,$parameters=NULL){ |
121 | 123 | $form=$this->getForm(); |
122 | 124 | $params=["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url,"stopPropagation"=>true]; |
123 | - if(\is_array($parameters)) |
|
124 | - $params=\array_merge($params,$parameters); |
|
125 | + if(\is_array($parameters)) { |
|
126 | + $params=\array_merge($params,$parameters); |
|
127 | + } |
|
125 | 128 | $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", $params)); |
126 | 129 | return $this; |
127 | 130 | } |
@@ -17,18 +17,18 @@ discard block |
||
17 | 17 | protected $_dropdown; |
18 | 18 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
19 | 19 | parent::__construct($identifier, "div", "ui buttons"); |
20 | - if ($asIcons === true) |
|
20 | + if ($asIcons===true) |
|
21 | 21 | $this->asIcons(); |
22 | 22 | $this->addElements($elements, $asIcons); |
23 | 23 | } |
24 | - protected function createItem($value){ |
|
24 | + protected function createItem($value) { |
|
25 | 25 | return new HtmlButton("", $value); |
26 | 26 | } |
27 | 27 | |
28 | - public function addDropdown($items,$asCombo=false){ |
|
29 | - $dd= new HtmlDropdown("dd-".$this->identifier,null,$items); |
|
28 | + public function addDropdown($items, $asCombo=false) { |
|
29 | + $dd=new HtmlDropdown("dd-".$this->identifier, null, $items); |
|
30 | 30 | $dd->asButton(); |
31 | - if($asCombo){ |
|
31 | + if ($asCombo) { |
|
32 | 32 | $dd->setAction("combo"); |
33 | 33 | $dd->addToProperty("class", "combo"); |
34 | 34 | } |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | |
40 | 40 | public function addElement($element, $asIcon=false) { |
41 | 41 | $item=$this->addItem($element); |
42 | - if($asIcon) |
|
42 | + if ($asIcon) |
|
43 | 43 | $item->asIcon($element); |
44 | 44 | return $item; |
45 | 45 | } |
46 | 46 | |
47 | 47 | public function addElements($elements, $asIcons=false) { |
48 | - foreach ( $elements as $element ) { |
|
48 | + foreach ($elements as $element) { |
|
49 | 49 | $this->addElement($element, $asIcons); |
50 | 50 | } |
51 | 51 | return $this; |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | public function insertOr($aferIndex=0, $or="or") { |
55 | 55 | $orElement=new HtmlSemDoubleElement("", "div", "or"); |
56 | 56 | $orElement->setProperty("data-text", $or); |
57 | - array_splice($this->content, $aferIndex + 1, 0, array ($orElement )); |
|
57 | + array_splice($this->content, $aferIndex+1, 0, array($orElement)); |
|
58 | 58 | return $this; |
59 | 59 | } |
60 | 60 | |
@@ -67,8 +67,8 @@ discard block |
||
67 | 67 | } |
68 | 68 | |
69 | 69 | public function asIcons() { |
70 | - foreach ( $this->content as $item ) { |
|
71 | - if($item instanceof HtmlButton) |
|
70 | + foreach ($this->content as $item) { |
|
71 | + if ($item instanceof HtmlButton) |
|
72 | 72 | $item->asIcon($item->getContent()); |
73 | 73 | } |
74 | 74 | return $this->addToProperty("class", "icons"); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
102 | 102 | */ |
103 | 103 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
104 | - foreach ( $this->content as $element ) { |
|
104 | + foreach ($this->content as $element) { |
|
105 | 105 | $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
106 | 106 | } |
107 | 107 | return $this; |
@@ -113,10 +113,10 @@ discard block |
||
113 | 113 | |
114 | 114 | public function addClasses($classes=array()) { |
115 | 115 | $i=0; |
116 | - if(!\is_array($classes)){ |
|
117 | - $classes=array_fill (0,$this->count(),$classes); |
|
116 | + if (!\is_array($classes)) { |
|
117 | + $classes=array_fill(0, $this->count(), $classes); |
|
118 | 118 | } |
119 | - foreach ( $this->content as $button ) { |
|
119 | + foreach ($this->content as $button) { |
|
120 | 120 | $button->addToProperty("class", $classes[$i++]); |
121 | 121 | } |
122 | 122 | return $this; |
@@ -130,8 +130,8 @@ discard block |
||
130 | 130 | $this->addElement($function($object)); |
131 | 131 | } |
132 | 132 | |
133 | - public function run(JsUtils $js){ |
|
134 | - $result= parent::run($js); |
|
133 | + public function run(JsUtils $js) { |
|
134 | + $result=parent::run($js); |
|
135 | 135 | return $result->setItemSelector(".ui.button"); |
136 | 136 | } |
137 | 137 |
@@ -17,8 +17,9 @@ discard block |
||
17 | 17 | protected $_dropdown; |
18 | 18 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
19 | 19 | parent::__construct($identifier, "div", "ui buttons"); |
20 | - if ($asIcons === true) |
|
21 | - $this->asIcons(); |
|
20 | + if ($asIcons === true) { |
|
21 | + $this->asIcons(); |
|
22 | + } |
|
22 | 23 | $this->addElements($elements, $asIcons); |
23 | 24 | } |
24 | 25 | protected function createItem($value){ |
@@ -39,8 +40,9 @@ discard block |
||
39 | 40 | |
40 | 41 | public function addElement($element, $asIcon=false) { |
41 | 42 | $item=$this->addItem($element); |
42 | - if($asIcon) |
|
43 | - $item->asIcon($element); |
|
43 | + if($asIcon) { |
|
44 | + $item->asIcon($element); |
|
45 | + } |
|
44 | 46 | return $item; |
45 | 47 | } |
46 | 48 | |
@@ -68,8 +70,9 @@ discard block |
||
68 | 70 | |
69 | 71 | public function asIcons() { |
70 | 72 | foreach ( $this->content as $item ) { |
71 | - if($item instanceof HtmlButton) |
|
72 | - $item->asIcon($item->getContent()); |
|
73 | + if($item instanceof HtmlButton) { |
|
74 | + $item->asIcon($item->getContent()); |
|
75 | + } |
|
73 | 76 | } |
74 | 77 | return $this->addToProperty("class", "icons"); |
75 | 78 | } |
@@ -17,10 +17,10 @@ |
||
17 | 17 | * {@inheritDoc} |
18 | 18 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
19 | 19 | */ |
20 | - public function run(JsUtils $js){ |
|
21 | - if(!isset($this->_bsComponent)){ |
|
22 | - if(isset($this->_timeout)){ |
|
23 | - $js->exec("setTimeout(function() { $('#{$this->identifier}').transition({$this->_closeTransition}); }, {$this->_timeout});",true); |
|
20 | + public function run(JsUtils $js) { |
|
21 | + if (!isset($this->_bsComponent)) { |
|
22 | + if (isset($this->_timeout)) { |
|
23 | + $js->exec("setTimeout(function() { $('#{$this->identifier}').transition({$this->_closeTransition}); }, {$this->_timeout});", true); |
|
24 | 24 | } |
25 | 25 | } |
26 | 26 | return parent::run($js); |