Completed
Push — master ( 5059ab...830e5e )
by Jean-Christophe
02:49
created
Ajax/common/traits/JsUtilsAjaxTrait.php 2 patches
Spacing   +93 added lines, -93 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
 	protected $ajaxLoader='<span></span><span></span><span></span><span></span><span></span>';
17 17
 
18 18
 	abstract public function getUrl($url);
19
-	abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true);
19
+	abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true);
20 20
 
21
-	protected function _ajax($method,$url,$responseElement="",$parameters=[]) {
21
+	protected function _ajax($method, $url, $responseElement="", $parameters=[]) {
22 22
 		$jsCallback=null;
23 23
 		$attr="id";
24 24
 		$hasLoader=true;
@@ -35,80 +35,80 @@  discard block
 block discarded – undo
35 35
 		$retour=$this->_getAjaxUrl($url, $attr);
36 36
 		$responseElement=$this->_getResponseElement($responseElement);
37 37
 		$retour.="var self=this;\n";
38
-		if($hasLoader===true && JString::isNotNull($responseElement)){
38
+		if ($hasLoader===true && JString::isNotNull($responseElement)) {
39 39
 			$this->addLoading($retour, $responseElement);
40 40
 		}
41
-		$ajaxParameters=["url"=>"url","method"=>"'".\strtoupper($method)."'"];
42
-		if(!$async){
41
+		$ajaxParameters=["url"=>"url", "method"=>"'".\strtoupper($method)."'"];
42
+		if (!$async) {
43 43
 			$ajaxParameters["async"]="false";
44 44
 		}
45
-		if(isset($params)){
45
+		if (isset($params)) {
46 46
 			$ajaxParameters["data"]=self::_correctParams($params);
47 47
 		}
48
-		if(isset($headers)){
48
+		if (isset($headers)) {
49 49
 			$ajaxParameters["headers"]=$headers;
50 50
 		}
51 51
 		$this->createAjaxParameters($ajaxParameters, $parameters);
52 52
 		$retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data, textStatus, jqXHR ) {\n";
53
-		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n";
54
-		$retour=$this->_addJsCondition($jsCondition,$retour);
53
+		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback)."});\n";
54
+		$retour=$this->_addJsCondition($jsCondition, $retour);
55 55
 		if ($immediatly)
56 56
 			$this->jquery_code_for_compile[]=$retour;
57 57
 		return $retour;
58 58
 	}
59 59
 
60
-	protected function createAjaxParameters(&$original,$parameters){
61
-		$validParameters=["dataType"=>"'%value%'","beforeSend"=>"function(jqXHR,settings){%value%}","complete"=>"function(jqXHR){%value%}"];
62
-		foreach ($validParameters as $param=>$mask){
63
-			if(isset($parameters[$param])){
60
+	protected function createAjaxParameters(&$original, $parameters) {
61
+		$validParameters=["dataType"=>"'%value%'", "beforeSend"=>"function(jqXHR,settings){%value%}", "complete"=>"function(jqXHR){%value%}"];
62
+		foreach ($validParameters as $param=>$mask) {
63
+			if (isset($parameters[$param])) {
64 64
 				$original[$param]=\str_replace("%value%", $parameters[$param], $mask);
65 65
 			}
66 66
 		}
67 67
 	}
68 68
 
69
-	protected function implodeAjaxParameters($ajaxParameters){
70
-		$s = ''; foreach ($ajaxParameters as $k=>$v) { if ($s !== '') { $s .= ','; } $s .= "'{$k}':{$v}"; }
69
+	protected function implodeAjaxParameters($ajaxParameters) {
70
+		$s=''; foreach ($ajaxParameters as $k=>$v) { if ($s!=='') { $s.=','; } $s.="'{$k}':{$v}"; }
71 71
 		return $s;
72 72
 	}
73 73
 
74
-	protected function _addJsCondition($jsCondition,$jsSource){
75
-		if(isset($jsCondition)){
74
+	protected function _addJsCondition($jsCondition, $jsSource) {
75
+		if (isset($jsCondition)) {
76 76
 			return "if(".$jsCondition."){\n".$jsSource."\n}";
77 77
 		}
78 78
 		return $jsSource;
79 79
 	}
80 80
 
81 81
 
82
-	protected function _getAjaxUrl($url,$attr){
82
+	protected function _getAjaxUrl($url, $attr) {
83 83
 		$url=$this->_correctAjaxUrl($url);
84 84
 		$retour="url='".$url."';";
85 85
 		$slash="/";
86
-		if(JString::endswith($url, "/")===true){
86
+		if (JString::endswith($url, "/")===true) {
87 87
 			$slash="";
88 88
 		}
89
-		if(JString::isNotNull($attr)){
90
-			if ($attr==="value"){
89
+		if (JString::isNotNull($attr)) {
90
+			if ($attr==="value") {
91 91
 				$retour.="url=url+'".$slash."'+$(this).val();\n";
92
-			}elseif ($attr==="html"){
92
+			}elseif ($attr==="html") {
93 93
 				$retour.="url=url+'".$slash."'+$(this).html();\n";
94
-			}elseif(\substr($attr, 0,3)==="js:"){
94
+			}elseif (\substr($attr, 0, 3)==="js:") {
95 95
 				$retour.="url=url+'".$slash."'+".\substr($attr, 3).";\n";
96
-			}elseif($attr!==null && $attr!=="")
96
+			}elseif ($attr!==null && $attr!=="")
97 97
 				$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
98 98
 		}
99 99
 		return $retour;
100 100
 	}
101 101
 
102
-	protected function _getOnAjaxDone($responseElement,$jqueryDone,$ajaxTransition,$jsCallback){
103
-		$retour="";$call=null;
102
+	protected function _getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback) {
103
+		$retour=""; $call=null;
104 104
 		if (JString::isNotNull($responseElement)) {
105
-			if(isset($ajaxTransition)){
105
+			if (isset($ajaxTransition)) {
106 106
 				$call=$this->setAjaxDataCall($ajaxTransition);
107
-			}elseif(isset($this->ajaxTransition)){
107
+			}elseif (isset($this->ajaxTransition)) {
108 108
 				$call=$this->ajaxTransition;
109 109
 			}
110
-			if(\is_callable($call))
111
-				$retour="\t".$call($responseElement,$jqueryDone).";\n";
110
+			if (\is_callable($call))
111
+				$retour="\t".$call($responseElement, $jqueryDone).";\n";
112 112
 			else
113 113
 				$retour="\t{$responseElement}.{$jqueryDone}( data );\n";
114 114
 		}
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 		return $retour;
117 117
 	}
118 118
 
119
-	protected function _getResponseElement($responseElement){
119
+	protected function _getResponseElement($responseElement) {
120 120
 		if (JString::isNotNull($responseElement)) {
121 121
 			$responseElement=Javascript::prep_value($responseElement);
122 122
 			$responseElement=Javascript::prep_jquery_selector($responseElement);
@@ -127,26 +127,26 @@  discard block
 block discarded – undo
127 127
 	protected function _correctAjaxUrl($url) {
128 128
 		if ($url!=="/" && JString::endsWith($url, "/")===true)
129 129
 			$url=substr($url, 0, strlen($url)-1);
130
-			if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) {
130
+			if (strncmp($url, 'http://', 7)!=0 && strncmp($url, 'https://', 8)!=0) {
131 131
 				$url=$this->getUrl($url);
132 132
 			}
133 133
 			return $url;
134 134
 	}
135 135
 
136
-	public static function _correctParams($params){
137
-		if(JString::isNull($params)){
136
+	public static function _correctParams($params) {
137
+		if (JString::isNull($params)) {
138 138
 			return "";
139 139
 		}
140
-		if(\preg_match("@^\{.*?\}$@", $params)){
140
+		if (\preg_match("@^\{.*?\}$@", $params)) {
141 141
 			return '$.param('.$params.')';
142 142
 		}
143 143
 		return $params;
144 144
 	}
145 145
 
146
-	public static function _implodeParams($parameters){
146
+	public static function _implodeParams($parameters) {
147 147
 		$allParameters=[];
148
-		foreach ($parameters as $params){
149
-			if(isset($params))
148
+		foreach ($parameters as $params) {
149
+			if (isset($params))
150 150
 				$allParameters[]=self::_correctParams($params);
151 151
 		}
152 152
 		return \implode("+'&'+", $allParameters);
@@ -164,19 +164,19 @@  discard block
 block discarded – undo
164 164
 		$retour.="\t\t{$responseElement}.prepend('{$loading_notifier}');\n";
165 165
 	}
166 166
 
167
-	protected function setAjaxDataCall($params){
167
+	protected function setAjaxDataCall($params) {
168 168
 		$result=null;
169
-		if(!\is_callable($params)){
170
-			$result=function ($responseElement,$jqueryDone="html") use($params){
171
-				return AjaxTransition::{$params}($responseElement,$jqueryDone);
169
+		if (!\is_callable($params)) {
170
+			$result=function($responseElement, $jqueryDone="html") use($params){
171
+				return AjaxTransition::{$params}($responseElement, $jqueryDone);
172 172
 			};
173 173
 		}
174 174
 		return $result;
175 175
 	}
176 176
 
177
-	protected function setDefaultParameters(&$parameters,$default){
178
-		foreach ($default as $k=>$v){
179
-			if(!isset($parameters[$k]))
177
+	protected function setDefaultParameters(&$parameters, $default) {
178
+		foreach ($default as $k=>$v) {
179
+			if (!isset($parameters[$k]))
180 180
 				$parameters[$k]=$v;
181 181
 		}
182 182
 	}
@@ -190,8 +190,8 @@  discard block
 block discarded – undo
190 190
 	 * @param string $url The url of the request
191 191
 	 * @param string $responseElement selector of the HTML element displaying the answer
192 192
 	 */
193
-	private function _get($url, $responseElement="",$parameters=[]) {
194
-		return $this->_ajax("get", $url,$responseElement,$parameters);
193
+	private function _get($url, $responseElement="", $parameters=[]) {
194
+		return $this->_ajax("get", $url, $responseElement, $parameters);
195 195
 	}
196 196
 
197 197
 	/**
@@ -200,9 +200,9 @@  discard block
 block discarded – undo
200 200
 	 * @param string $responseElement selector of the HTML element displaying the answer
201 201
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
202 202
 	 */
203
-	public function get($url, $responseElement="",$parameters=[]) {
203
+	public function get($url, $responseElement="", $parameters=[]) {
204 204
 		$parameters["immediatly"]=true;
205
-		return $this->_get($url,$responseElement,$parameters);
205
+		return $this->_get($url, $responseElement, $parameters);
206 206
 	}
207 207
 
208 208
 	/**
@@ -212,9 +212,9 @@  discard block
 block discarded – undo
212 212
 	 * @param string $responseElement selector of the HTML element displaying the answer
213 213
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
214 214
 	 */
215
-	public function ajax($method,$url, $responseElement="", $parameters=[]) {
215
+	public function ajax($method, $url, $responseElement="", $parameters=[]) {
216 216
 		$parameters["immediatly"]=true;
217
-		return $this->_ajax($method,$url,$responseElement,$parameters);
217
+		return $this->_ajax($method, $url, $responseElement, $parameters);
218 218
 	}
219 219
 
220 220
 	/**
@@ -224,9 +224,9 @@  discard block
 block discarded – undo
224 224
 	 * @param string $responseElement selector of the HTML element displaying the answer
225 225
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
226 226
 	 */
227
-	public function ajaxDeferred($method,$url, $responseElement="", $parameters=[]) {
227
+	public function ajaxDeferred($method, $url, $responseElement="", $parameters=[]) {
228 228
 		$parameters["immediatly"]=false;
229
-		return $this->_ajax($method,$url,$responseElement,$parameters);
229
+		return $this->_ajax($method, $url, $responseElement, $parameters);
230 230
 	}
231 231
 
232 232
 	/**
@@ -235,15 +235,15 @@  discard block
 block discarded – undo
235 235
 	 * @param string $method Method used
236 236
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>"document","jsCondition"=>NULL,"headers"=>null,"immediatly"=>false)
237 237
 	 */
238
-	private function _json($url, $method="get",$parameters=[]) {
239
-		$parameters=\array_merge($parameters,["hasLoader"=>false]);
238
+	private function _json($url, $method="get", $parameters=[]) {
239
+		$parameters=\array_merge($parameters, ["hasLoader"=>false]);
240 240
 		$jsCallback=isset($parameters['jsCallback']) ? $parameters['jsCallback'] : "";
241 241
 		$context=isset($parameters['context']) ? $parameters['context'] : "document";
242 242
 		$retour="\tdata=($.isPlainObject(data))?data:JSON.parse(data);\t".$jsCallback.";\n\tfor(var key in data){"
243 243
 				."if($('#'+key,".$context.").length){ if($('#'+key,".$context.").is('[value]')) { $('#'+key,".$context.").val(data[key]);} else { $('#'+key,".$context.").html(data[key]); }}};\n";
244 244
 				$retour.="\t$(document).trigger('jsonReady',[data]);\n";
245 245
 		$parameters["jsCallback"]=$retour;
246
-		return $this->_ajax($method, $url,null,$parameters);
246
+		return $this->_ajax($method, $url, null, $parameters);
247 247
 	}
248 248
 
249 249
 	/**
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>"document","jsCondition"=>NULL,"headers"=>null,"immediatly"=>false)
254 254
 	 */
255 255
 	public function json($url, $method="get", $parameters=[]) {
256
-		return $this->_json($url,$method,$parameters);
256
+		return $this->_json($url, $method, $parameters);
257 257
 	}
258 258
 
259 259
 	/**
@@ -264,9 +264,9 @@  discard block
 block discarded – undo
264 264
 	 * @param string $method default get
265 265
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true)
266 266
 	 */
267
-	public function jsonOn($event,$element, $url,$method="get",$parameters=array()) {
268
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]);
269
-		return $this->_add_event($element, $this->jsonDeferred($url,$method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
267
+	public function jsonOn($event, $element, $url, $method="get", $parameters=array()) {
268
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]);
269
+		return $this->_add_event($element, $this->jsonDeferred($url, $method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
270 270
 	}
271 271
 
272 272
 	/**
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 	 */
278 278
 	public function jsonDeferred($url, $method="get", $parameters=[]) {
279 279
 		$parameters["immediatly"]=false;
280
-		return $this->_json($url,$method,$parameters);
280
+		return $this->_json($url, $method, $parameters);
281 281
 	}
282 282
 
283 283
 	/**
@@ -288,26 +288,26 @@  discard block
 block discarded – undo
288 288
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>null,"jsCondition"=>NULL,"headers"=>null,"immediatly"=>false,"rowClass"=>"_json")
289 289
 	 */
290 290
 	private function _jsonArray($maskSelector, $url, $method="get", $parameters=[]) {
291
-		$parameters=\array_merge($parameters,["hasLoader"=>false]);
291
+		$parameters=\array_merge($parameters, ["hasLoader"=>false]);
292 292
 		$rowClass=isset($parameters['rowClass']) ? $parameters['rowClass'] : "_json";
293 293
 		$jsCallback=isset($parameters['jsCallback']) ? $parameters['jsCallback'] : "";
294 294
 		$context=isset($parameters['context']) ? $parameters['context'] : null;
295
-		if($context===null){
295
+		if ($context===null) {
296 296
 			$parent="$('".$maskSelector."').parent()";
297
-			$newElm = "$('#'+newId)";
298
-		}else{
297
+			$newElm="$('#'+newId)";
298
+		} else {
299 299
 			$parent=$context;
300
-			$newElm = $context.".find('#'+newId)";
300
+			$newElm=$context.".find('#'+newId)";
301 301
 		}
302 302
 		$appendTo="\t\tnewElm.appendTo(".$parent.");\n";
303 303
 		$retour=$parent.".find('.{$rowClass}').remove();";
304 304
 		$retour.="\tdata=($.isPlainObject(data))?data:JSON.parse(data);\t".$jsCallback.";\n$.each(data, function(index, value) {\n"."\tvar created=false;var maskElm=$('".$maskSelector."').first();maskElm.hide();"."\tvar newId=(maskElm.attr('id') || 'mask')+'-'+index;"."\tvar newElm=".$newElm.";\n"."\tif(!newElm.length){\n"."\t\tnewElm=maskElm.clone();
305 305
 		newElm.attr('id',newId);\n;newElm.addClass('{$rowClass}').removeClass('_jsonArrayModel');\nnewElm.find('[id]').each(function(){ var newId=$(this).attr('id')+'-'+index;$(this).attr('id',newId).removeClass('_jsonArrayChecked');});\n";
306
-		$retour.= $appendTo;
306
+		$retour.=$appendTo;
307 307
 		$retour.="\t}\n"."\tfor(var key in value){\n"."\t\t\tvar html = $('<div />').append($(newElm).clone()).html();\n"."\t\t\tif(html.indexOf('__'+key+'__')>-1){\n"."\t\t\t\tcontent=$(html.split('__'+key+'__').join(value[key]));\n"."\t\t\t\t$(newElm).replaceWith(content);newElm=content;\n"."\t\t\t}\n"."\t\tvar sel='[data-id=\"'+key+'\"]';if($(sel,newElm).length){\n"."\t\t\tvar selElm=$(sel,newElm);\n"."\t\t\t if(selElm.is('[value]')) { selElm.attr('value',value[key]);selElm.val(value[key]);} else { selElm.html(value[key]); }\n"."\t\t}\n"."}\n"."\t$(newElm).show(true);"."\n"."\t$(newElm).removeClass('hide');"."});\n";
308 308
 		$retour.="\t$(document).trigger('jsonReady',[data]);\n";
309 309
 		$parameters["jsCallback"]=$retour;
310
-		return $this->_ajax($method, $url,null,$parameters);
310
+		return $this->_ajax($method, $url, null, $parameters);
311 311
 	}
312 312
 
313 313
 	/**
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>null,"jsCondition"=>NULL,"headers"=>null,"immediatly"=>false,"rowClass"=>"_json")
319 319
 	 */
320 320
 	public function jsonArray($maskSelector, $url, $method="get", $parameters=[]) {
321
-		return $this->_jsonArray($maskSelector, $url,$method,$parameters);
321
+		return $this->_jsonArray($maskSelector, $url, $method, $parameters);
322 322
 	}
323 323
 
324 324
 	/**
@@ -341,9 +341,9 @@  discard block
 block discarded – undo
341 341
 	 * @param string $method Method used, default : get
342 342
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","rowClass"=>"_json","immediatly"=>true)
343 343
 	 */
344
-	public function jsonArrayOn($event,$element,$maskSelector, $url,$method="get",$parameters=array()) {
345
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]);
346
-		return $this->_add_event($element, $this->jsonArrayDeferred($maskSelector,$url,$method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
344
+	public function jsonArrayOn($event, $element, $maskSelector, $url, $method="get", $parameters=array()) {
345
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]);
346
+		return $this->_add_event($element, $this->jsonArrayDeferred($maskSelector, $url, $method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
347 347
 	}
348 348
 
349 349
 	/**
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
 	 */
356 356
 	public function getDeferred($url, $responseElement="", $parameters=[]) {
357 357
 		$parameters["immediatly"]=false;
358
-		return $this->_get($url, $responseElement,$parameters);
358
+		return $this->_get($url, $responseElement, $parameters);
359 359
 	}
360 360
 
361 361
 	/**
@@ -368,8 +368,8 @@  discard block
 block discarded – undo
368 368
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>null,"headers"=>null)
369 369
 	 */
370 370
 	public function getOn($event, $element, $url, $responseElement="", $parameters=array()) {
371
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]);
372
-		return $this->_add_event($element, $this->getDeferred($url,$responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
371
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]);
372
+		return $this->_add_event($element, $this->getDeferred($url, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
373 373
 	}
374 374
 
375 375
 	/**
@@ -382,8 +382,8 @@  discard block
 block discarded – undo
382 382
 	 * @param array $parameters default : array("method"=>"get","preventDefault"=>true,"stopPropagation"=>true,"params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","jsCondition"=>NULL,"headers"=>null)
383 383
 	 */
384 384
 	public function ajaxOn($event, $element, $url, $responseElement="", $parameters=array()) {
385
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true,"method"=>"get"]);
386
-		return $this->_add_event($element, $this->ajaxDeferred($parameters["method"],$url,$responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
385
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true, "method"=>"get"]);
386
+		return $this->_add_event($element, $this->ajaxDeferred($parameters["method"], $url, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
387 387
 	}
388 388
 
389 389
 	/**
@@ -410,9 +410,9 @@  discard block
 block discarded – undo
410 410
 		return $this->getOn("click", $element, $url, $responseElement, $parameters);
411 411
 	}
412 412
 
413
-	private function _post($url, $params="{}",$responseElement="", $parameters=[]) {
413
+	private function _post($url, $params="{}", $responseElement="", $parameters=[]) {
414 414
 		$parameters["params"]=$params;
415
-		return $this->_ajax("POST", $url,$responseElement,$parameters);
415
+		return $this->_ajax("POST", $url, $responseElement, $parameters);
416 416
 	}
417 417
 
418 418
 	/**
@@ -422,8 +422,8 @@  discard block
 block discarded – undo
422 422
 	 * @param string $params JSON parameters
423 423
 	 * @param array $parameters default : array("jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
424 424
 	 */
425
-	public function post($url, $params="{}",$responseElement="", $parameters=[]) {
426
-		return $this->_post($url, $params,$responseElement, $parameters);
425
+	public function post($url, $params="{}", $responseElement="", $parameters=[]) {
426
+		return $this->_post($url, $params, $responseElement, $parameters);
427 427
 	}
428 428
 
429 429
 	/**
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
 	 * @param string $responseElement selector of the HTML element displaying the answer
435 435
 	 * @param array $parameters default : array("jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
436 436
 	 */
437
-	public function postDeferred($url, $params="{}",$responseElement="", $parameters=[]) {
437
+	public function postDeferred($url, $params="{}", $responseElement="", $parameters=[]) {
438 438
 		$parameters["immediatly"]=false;
439 439
 		return $this->_post($url, $params, $responseElement, $parameters);
440 440
 	}
@@ -450,8 +450,8 @@  discard block
 block discarded – undo
450 450
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
451 451
 	 */
452 452
 	public function postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) {
453
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]);
454
-		return $this->_add_event($element, $this->postDeferred($url, $params, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
453
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]);
454
+		return $this->_add_event($element, $this->postDeferred($url, $params, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
455 455
 	}
456 456
 
457 457
 	/**
@@ -468,27 +468,27 @@  discard block
 block discarded – undo
468 468
 	}
469 469
 
470 470
 	private function _postForm($url, $form, $responseElement, $parameters=[]) {
471
-		$params="{}";$validation=false;$jsCallback=NULL;$attr="id";$hasLoader=true;$jqueryDone="html";$ajaxTransition=null;$immediatly=false;$jsCondition=NULL;$headers=NULL;$async=true;
471
+		$params="{}"; $validation=false; $jsCallback=NULL; $attr="id"; $hasLoader=true; $jqueryDone="html"; $ajaxTransition=null; $immediatly=false; $jsCondition=NULL; $headers=NULL; $async=true;
472 472
 		\extract($parameters);
473
-		$async=($async)?"true":"false";
473
+		$async=($async) ? "true" : "false";
474 474
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
475 475
 		$retour=$this->_getAjaxUrl($url, $attr);
476 476
 		$retour.="\nvar params=$('#".$form."').serialize();\n";
477
-		if(isset($params)){
477
+		if (isset($params)) {
478 478
 			$retour.="params+='&'+".self::_correctParams($params).";\n";
479 479
 		}
480 480
 		$responseElement=$this->_getResponseElement($responseElement);
481 481
 		$retour.="var self=this;\n";
482
-		if($hasLoader===true){
482
+		if ($hasLoader===true) {
483 483
 			$this->addLoading($retour, $responseElement);
484 484
 		}
485
-		$ajaxParameters=["url"=>"url","method"=>"'POST'","data"=>"params","async"=>$async];
486
-		if(isset($headers)){
485
+		$ajaxParameters=["url"=>"url", "method"=>"'POST'", "data"=>"params", "async"=>$async];
486
+		if (isset($headers)) {
487 487
 			$ajaxParameters["headers"]=$headers;
488 488
 		}
489 489
 		$this->createAjaxParameters($ajaxParameters, $parameters);
490 490
 		$retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data ) {\n";
491
-		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n";
491
+		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback)."});\n";
492 492
 
493 493
 		if ($validation) {
494 494
 			$retour="$('#".$form."').validate({submitHandler: function(form) {
@@ -538,8 +538,8 @@  discard block
 block discarded – undo
538 538
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"validation"=>false,"params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>null,"headers"=>null)
539 539
 	 */
540 540
 	public function postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) {
541
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]);
542
-		return $this->_add_event($element, $this->postFormDeferred($url, $form, $responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
541
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]);
542
+		return $this->_add_event($element, $this->postFormDeferred($url, $form, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
543 543
 	}
544 544
 
545 545
 	/**
Please login to merge, or discard this patch.
Braces   +27 added lines, -20 removed lines patch added patch discarded remove patch
@@ -52,8 +52,9 @@  discard block
 block discarded – undo
52 52
 		$retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data, textStatus, jqXHR ) {\n";
53 53
 		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n";
54 54
 		$retour=$this->_addJsCondition($jsCondition,$retour);
55
-		if ($immediatly)
56
-			$this->jquery_code_for_compile[]=$retour;
55
+		if ($immediatly) {
56
+					$this->jquery_code_for_compile[]=$retour;
57
+		}
57 58
 		return $retour;
58 59
 	}
59 60
 
@@ -89,12 +90,13 @@  discard block
 block discarded – undo
89 90
 		if(JString::isNotNull($attr)){
90 91
 			if ($attr==="value"){
91 92
 				$retour.="url=url+'".$slash."'+$(this).val();\n";
92
-			}elseif ($attr==="html"){
93
+			} elseif ($attr==="html"){
93 94
 				$retour.="url=url+'".$slash."'+$(this).html();\n";
94
-			}elseif(\substr($attr, 0,3)==="js:"){
95
+			} elseif(\substr($attr, 0,3)==="js:"){
95 96
 				$retour.="url=url+'".$slash."'+".\substr($attr, 3).";\n";
96
-			}elseif($attr!==null && $attr!=="")
97
-				$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
97
+			} elseif($attr!==null && $attr!=="") {
98
+							$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
99
+			}
98 100
 		}
99 101
 		return $retour;
100 102
 	}
@@ -104,13 +106,14 @@  discard block
 block discarded – undo
104 106
 		if (JString::isNotNull($responseElement)) {
105 107
 			if(isset($ajaxTransition)){
106 108
 				$call=$this->setAjaxDataCall($ajaxTransition);
107
-			}elseif(isset($this->ajaxTransition)){
109
+			} elseif(isset($this->ajaxTransition)){
108 110
 				$call=$this->ajaxTransition;
109 111
 			}
110
-			if(\is_callable($call))
111
-				$retour="\t".$call($responseElement,$jqueryDone).";\n";
112
-			else
113
-				$retour="\t{$responseElement}.{$jqueryDone}( data );\n";
112
+			if(\is_callable($call)) {
113
+							$retour="\t".$call($responseElement,$jqueryDone).";\n";
114
+			} else {
115
+							$retour="\t{$responseElement}.{$jqueryDone}( data );\n";
116
+			}
114 117
 		}
115 118
 		$retour.="\t".$jsCallback."\n";
116 119
 		return $retour;
@@ -125,8 +128,9 @@  discard block
 block discarded – undo
125 128
 	}
126 129
 
127 130
 	protected function _correctAjaxUrl($url) {
128
-		if ($url!=="/" && JString::endsWith($url, "/")===true)
129
-			$url=substr($url, 0, strlen($url)-1);
131
+		if ($url!=="/" && JString::endsWith($url, "/")===true) {
132
+					$url=substr($url, 0, strlen($url)-1);
133
+		}
130 134
 			if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) {
131 135
 				$url=$this->getUrl($url);
132 136
 			}
@@ -146,8 +150,9 @@  discard block
 block discarded – undo
146 150
 	public static function _implodeParams($parameters){
147 151
 		$allParameters=[];
148 152
 		foreach ($parameters as $params){
149
-			if(isset($params))
150
-				$allParameters[]=self::_correctParams($params);
153
+			if(isset($params)) {
154
+							$allParameters[]=self::_correctParams($params);
155
+			}
151 156
 		}
152 157
 		return \implode("+'&'+", $allParameters);
153 158
 	}
@@ -176,8 +181,9 @@  discard block
 block discarded – undo
176 181
 
177 182
 	protected function setDefaultParameters(&$parameters,$default){
178 183
 		foreach ($default as $k=>$v){
179
-			if(!isset($parameters[$k]))
180
-				$parameters[$k]=$v;
184
+			if(!isset($parameters[$k])) {
185
+							$parameters[$k]=$v;
186
+			}
181 187
 		}
182 188
 	}
183 189
 
@@ -295,7 +301,7 @@  discard block
 block discarded – undo
295 301
 		if($context===null){
296 302
 			$parent="$('".$maskSelector."').parent()";
297 303
 			$newElm = "$('#'+newId)";
298
-		}else{
304
+		} else{
299 305
 			$parent=$context;
300 306
 			$newElm = $context.".find('#'+newId)";
301 307
 		}
@@ -497,8 +503,9 @@  discard block
 block discarded – undo
497 503
 			$retour.="$('#".$form."').submit();\n";
498 504
 		}
499 505
 		$retour=$this->_addJsCondition($jsCondition, $retour);
500
-		if ($immediatly)
501
-			$this->jquery_code_for_compile[]=$retour;
506
+		if ($immediatly) {
507
+					$this->jquery_code_for_compile[]=$retour;
508
+		}
502 509
 		return $retour;
503 510
 	}
504 511
 
Please login to merge, or discard this patch.
Ajax/service/AjaxCall.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,21 +23,21 @@  discard block
 block discarded – undo
23 23
 		$this->parameters["immediatly"]=false;
24 24
 		extract($this->parameters);
25 25
 		$result=$this->_eventPreparing($preventDefault, $stopPropagation);
26
-		switch($this->method) {
26
+		switch ($this->method) {
27 27
 			case "get":
28 28
 				$result.=$js->getDeferred($url, $responseElement, $this->parameters);
29 29
 				break;
30 30
 			case "post":
31
-				$result.=$js->postDeferred($url, $params,$responseElement, $this->parameters);
31
+				$result.=$js->postDeferred($url, $params, $responseElement, $this->parameters);
32 32
 				break;
33 33
 			case "postForm":
34 34
 				$result.=$js->postFormDeferred($url, $form, $responseElement, $this->parameters);
35 35
 				break;
36 36
 			case "json":
37
-				$result.=$js->jsonDeferred($url,$method,$this->parameters);
37
+				$result.=$js->jsonDeferred($url, $method, $this->parameters);
38 38
 				break;
39 39
 			case "jsonArray":
40
-				$result.=$js->jsonArrayDeferred($modelSelector, $url,$method,$this->parameters);
40
+				$result.=$js->jsonArrayDeferred($modelSelector, $url, $method, $this->parameters);
41 41
 				break;
42 42
 			default:
43 43
 				//$result.=$js->ajax($this->method, $url,$responseElement,$this->parameters);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 		return $result;
47 47
 	}
48 48
 
49
-	protected function _eventPreparing($preventDefault,$stopPropagation){
49
+	protected function _eventPreparing($preventDefault, $stopPropagation) {
50 50
 		$result="";
51 51
 		if ($preventDefault===true) {
52 52
 			$result.=Javascript::$preventDefault;
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,9 @@
 block discarded – undo
14 14
 	}
15 15
 
16 16
 	public function compile(JsUtils $js=null) {
17
-		if ($js===null)
18
-			return;
17
+		if ($js===null) {
18
+					return;
19
+		}
19 20
 		$params="{}";
20 21
 		$stopPropagation=true;
21 22
 		$preventDefault=true;
Please login to merge, or discard this patch.
Ajax/php/symfony/JsUtils.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Ajax\php\symfony;
4 4
 
5 5
 
6
-use Symfony\Component\HttpFoundation\Request;
7 6
 use Symfony\Component\HttpKernel\HttpKernelInterface;
8 7
 use Ajax\service\JString;
9 8
 class JsUtils extends \Ajax\JsUtils{
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -6,44 +6,44 @@  discard block
 block discarded – undo
6 6
 use Symfony\Component\HttpFoundation\Request;
7 7
 use Symfony\Component\HttpKernel\HttpKernelInterface;
8 8
 use Ajax\service\JString;
9
-class JsUtils extends \Ajax\JsUtils{
9
+class JsUtils extends \Ajax\JsUtils {
10 10
 
11
-	public function getUrl($url){
11
+	public function getUrl($url) {
12 12
 		$router=$this->getInjected();
13
-		if(isset($router)){
13
+		if (isset($router)) {
14 14
 			try {
15 15
 				$url=$router->generate($url);
16
-			}catch (\Exception $e){
16
+			}catch (\Exception $e) {
17 17
 				return $url;
18 18
 			}
19 19
 		}
20 20
 		return $url;
21 21
 	}
22
-	public function addViewElement($identifier,$content,&$view){
23
-		if(\is_array($view)){
24
-			if(\array_key_exists("q", $view)===false){
22
+	public function addViewElement($identifier, $content, &$view) {
23
+		if (\is_array($view)) {
24
+			if (\array_key_exists("q", $view)===false) {
25 25
 				$view["q"]=array();
26 26
 			}
27 27
 			$view["q"][$identifier]=$content;
28
-		}elseif($view instanceof \Twig_Environment){
28
+		}elseif ($view instanceof \Twig_Environment) {
29 29
 			$vars=$view->getGlobals();
30
-			if(\array_key_exists("q", $vars)===false){
30
+			if (\array_key_exists("q", $vars)===false) {
31 31
 				$vars["q"]=array();
32 32
 			}
33 33
 			$vars["q"][$identifier]=$content;
34
-			$view->addGlobal("q",$vars["q"]);
34
+			$view->addGlobal("q", $vars["q"]);
35 35
 		}
36 36
 	}
37 37
 
38
-	public function createScriptVariable(&$view,$view_var, $output){
38
+	public function createScriptVariable(&$view, $view_var, $output) {
39 39
 		$this->addVariable($view_var, $output, $view);
40 40
 	}
41 41
 
42
-	protected function addVariable($key,$value,&$view){
43
-		if(\is_array($view)){
42
+	protected function addVariable($key, $value, &$view) {
43
+		if (\is_array($view)) {
44 44
 			$view[$key]=$value;
45
-		}elseif($view instanceof \Twig_Environment){
46
-			$view->addGlobal($key,$value);
45
+		}elseif ($view instanceof \Twig_Environment) {
46
+			$view->addGlobal($key, $value);
47 47
 		}
48 48
 	}
49 49
 
@@ -54,17 +54,17 @@  discard block
 block discarded – undo
54 54
 	 * @param array $params
55 55
 	 * @see \Ajax\JsUtils::forward()
56 56
 	 */
57
-	public function forward($initialControllerInstance,$controllerName,$actionName,$params=array()){
57
+	public function forward($initialControllerInstance, $controllerName, $actionName, $params=array()) {
58 58
 		$path=$params;
59
-		$request = $initialControllerInstance->get('request_stack')->getCurrentRequest();
60
-		$path['_forwarded'] = $request->attributes;
61
-		$path['_controller'] = $controllerName.":".$actionName;
62
-		$subRequest = $request->duplicate([], null, $path);
63
-		$response= $initialControllerInstance->get('http_kernel')->handle($subRequest, HttpKernelInterface::SUB_REQUEST);
59
+		$request=$initialControllerInstance->get('request_stack')->getCurrentRequest();
60
+		$path['_forwarded']=$request->attributes;
61
+		$path['_controller']=$controllerName.":".$actionName;
62
+		$subRequest=$request->duplicate([], null, $path);
63
+		$response=$initialControllerInstance->get('http_kernel')->handle($subRequest, HttpKernelInterface::SUB_REQUEST);
64 64
 		return $response->getContent();
65 65
 	}
66 66
 
67
-	public function renderContent($initialControllerInstance,$viewName, $params=NULL) {
67
+	public function renderContent($initialControllerInstance, $viewName, $params=NULL) {
68 68
 		if ($initialControllerInstance->has('templating')) {
69 69
 			return $initialControllerInstance->get('templating')->render($viewName, $params);
70 70
 		}
@@ -76,10 +76,10 @@  discard block
 block discarded – undo
76 76
 		return $initialControllerInstance->get('twig')->render($viewName, $params);
77 77
 	}
78 78
 
79
-	public function fromDispatcher($dispatcher){
80
-		$request = $dispatcher->get('request_stack')->getCurrentRequest();
79
+	public function fromDispatcher($dispatcher) {
80
+		$request=$dispatcher->get('request_stack')->getCurrentRequest();
81 81
 		$uri=$request->getPathInfo();
82
-		if(JString::startswith($uri, "/")){
82
+		if (JString::startswith($uri, "/")) {
83 83
 			$uri=\substr($uri, 1);
84 84
 		}
85 85
 		return \explode("/", $uri);
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 		if(isset($router)){
14 14
 			try {
15 15
 				$url=$router->generate($url);
16
-			}catch (\Exception $e){
16
+			} catch (\Exception $e){
17 17
 				return $url;
18 18
 			}
19 19
 		}
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 				$view["q"]=array();
26 26
 			}
27 27
 			$view["q"][$identifier]=$content;
28
-		}elseif($view instanceof \Twig_Environment){
28
+		} elseif($view instanceof \Twig_Environment){
29 29
 			$vars=$view->getGlobals();
30 30
 			if(\array_key_exists("q", $vars)===false){
31 31
 				$vars["q"]=array();
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 	protected function addVariable($key,$value,&$view){
43 43
 		if(\is_array($view)){
44 44
 			$view[$key]=$value;
45
-		}elseif($view instanceof \Twig_Environment){
45
+		} elseif($view instanceof \Twig_Environment){
46 46
 			$view->addGlobal($key,$value);
47 47
 		}
48 48
 	}
Please login to merge, or discard this patch.
Ajax/php/ubiquity/JsUtils.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -4,34 +4,34 @@
 block discarded – undo
4 4
 
5 5
 use Ubiquity\controllers\Startup;
6 6
 use Ubiquity\utils\RequestUtils;
7
-class JsUtils extends \Ajax\JsUtils{
7
+class JsUtils extends \Ajax\JsUtils {
8 8
 
9
-	public function getUrl($url){
9
+	public function getUrl($url) {
10 10
 		return RequestUtils::getUrl($url);
11 11
 	}
12 12
 
13
-	public function addViewElement($identifier,$content,&$view){
13
+	public function addViewElement($identifier, $content, &$view) {
14 14
 		$controls=$view->getVar("q");
15
-		if (isset($controls) === false) {
16
-			$controls=array ();
15
+		if (isset($controls)===false) {
16
+			$controls=array();
17 17
 		}
18 18
 		$controls[$identifier]=$content;
19 19
 		$view->setVar("q", $controls);
20 20
 	}
21 21
 
22
-	public function createScriptVariable(&$view,$view_var, $output){
23
-		$view->setVar($view_var,$output);
22
+	public function createScriptVariable(&$view, $view_var, $output) {
23
+		$view->setVar($view_var, $output);
24 24
 	}
25 25
 
26
-	public function forward($initialController,$controller,$action,$params=array()){
27
-		return $initialController->forward($controller,$action,$params,true,true,true);
26
+	public function forward($initialController, $controller, $action, $params=array()) {
27
+		return $initialController->forward($controller, $action, $params, true, true, true);
28 28
 	}
29 29
 
30
-	public function renderContent($initialControllerInstance,$viewName, $params=NULL) {
31
-		return $initialControllerInstance->loadView($viewName,$params,true);
30
+	public function renderContent($initialControllerInstance, $viewName, $params=NULL) {
31
+		return $initialControllerInstance->loadView($viewName, $params, true);
32 32
 	}
33 33
 
34
-	public function fromDispatcher($dispatcher){
34
+	public function fromDispatcher($dispatcher) {
35 35
 		return Startup::$urlParts;
36 36
 	}
37 37
 }
Please login to merge, or discard this patch.
Ajax/common/html/PropertyWrapper.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@  discard block
 block discarded – undo
12 12
 		}
13 13
 		$output="";
14 14
 		if (\is_array($input)) {
15
-			if (sizeof($input) > 0) {
16
-				if (self::containsElement($input) === false) {
15
+			if (sizeof($input)>0) {
16
+				if (self::containsElement($input)===false) {
17 17
 					$output=self::wrapStrings($input, $separator=' ', $valueQuote='"');
18 18
 				} else {
19 19
 					$output=self::wrapObjects($input, $js, $separator, $valueQuote);
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	}
25 25
 
26 26
 	private static function containsElement($input) {
27
-		foreach ( $input as $v ) {
27
+		foreach ($input as $v) {
28 28
 			if (\is_object($v) || \is_array($v))
29 29
 				return true;
30 30
 		}
@@ -32,9 +32,9 @@  discard block
 block discarded – undo
32 32
 	}
33 33
 
34 34
 	public static function wrapStrings($input, $separator=' ', $valueQuote='"') {
35
-		if (JArray::isAssociative($input) === true) {
36
-			$result=implode($separator, array_map(function ($v, $k) use($valueQuote) {
37
-				return $k . '=' . $valueQuote . $v . $valueQuote;
35
+		if (JArray::isAssociative($input)===true) {
36
+			$result=implode($separator, array_map(function($v, $k) use($valueQuote) {
37
+				return $k.'='.$valueQuote.$v.$valueQuote;
38 38
 			}, $input, array_keys($input)));
39 39
 		} else {
40 40
 			$result=implode($separator, $input);
@@ -43,17 +43,17 @@  discard block
 block discarded – undo
43 43
 	}
44 44
 
45 45
 	public static function wrapObjects($input, $js=NULL, $separator=' ', $valueQuote='"') {
46
-		return implode($separator, array_map(function ($v) use($js, $separator, $valueQuote) {
47
-			if(\is_string($v)){
46
+		return implode($separator, array_map(function($v) use($js, $separator, $valueQuote) {
47
+			if (\is_string($v)) {
48 48
 				return $v;
49 49
 			}
50
-			if ($v instanceof BaseHtml){
50
+			if ($v instanceof BaseHtml) {
51 51
 				return $v->compile($js);
52 52
 			}
53 53
 			if (\is_array($v)) {
54 54
 				return self::wrap($v, $js, $separator, $valueQuote);
55 55
 			}
56
-			if(!\is_callable($v)){
56
+			if (!\is_callable($v)) {
57 57
 				return $v;
58 58
 			}
59 59
 		}, $input));
@@ -71,14 +71,14 @@  discard block
 block discarded – undo
71 71
 		return $result;*/
72 72
 	}
73 73
 
74
-	protected static function wrapValue($value,$js=NULL, $separator=' ', $valueQuote='"'){
74
+	protected static function wrapValue($value, $js=NULL, $separator=' ', $valueQuote='"') {
75 75
 		if (\is_array($value)) {
76 76
 			return self::wrap($value, $js, $separator, $valueQuote);
77 77
 		}
78
-		if ($value instanceof BaseHtml){
78
+		if ($value instanceof BaseHtml) {
79 79
 			return $value->compile($js);
80 80
 		}
81
-		if(!\is_callable($value)){
81
+		if (!\is_callable($value)) {
82 82
 			return $value;
83 83
 		}
84 84
 		return '';
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,9 @@
 block discarded – undo
25 25
 
26 26
 	private static function containsElement($input) {
27 27
 		foreach ( $input as $v ) {
28
-			if (\is_object($v) || \is_array($v))
29
-				return true;
28
+			if (\is_object($v) || \is_array($v)) {
29
+							return true;
30
+			}
30 31
 		}
31 32
 		return false;
32 33
 	}
Please login to merge, or discard this patch.
Ajax/common/traits/JsUtilsInternalTrait.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@  discard block
 block discarded – undo
2 2
 namespace Ajax\common\traits;
3 3
 use Ajax\common\BaseGui;
4 4
 
5
-trait JsUtilsInternalTrait{
5
+trait JsUtilsInternalTrait {
6 6
 
7
-	protected $jquery_code_for_compile=array ();
8
-	protected $jquery_code_for_compile_at_last=array ();
7
+	protected $jquery_code_for_compile=array();
8
+	protected $jquery_code_for_compile_at_last=array();
9 9
 
10 10
 	protected function _addToCompile($jsScript) {
11 11
 		$this->jquery_code_for_compile[]=$jsScript;
@@ -15,28 +15,28 @@  discard block
 block discarded – undo
15 15
 	 * @param BaseGui $library
16 16
 	 * @param mixed $view
17 17
 	 */
18
-	protected function _compileLibrary(BaseGui $library=NULL, &$view=NULL){
19
-		if(isset($view))
18
+	protected function _compileLibrary(BaseGui $library=NULL, &$view=NULL) {
19
+		if (isset($view))
20 20
 			$library->compileHtml($this, $view);
21 21
 		if ($library->isAutoCompile()) {
22 22
 			$library->compile(true);
23 23
 		}
24 24
 	}
25 25
 
26
-	protected function defer($script){
26
+	protected function defer($script) {
27 27
 		$result="window.defer=function (method) {if (window.jQuery) method(); else setTimeout(function() { defer(method) }, 50);};";
28 28
 		$result.="window.defer(function(){".$script."})";
29 29
 		return $result;
30 30
 	}
31 31
 
32
-	protected function ready($script){
32
+	protected function ready($script) {
33 33
 		$result='$(document).ready(function() {'."\n";
34 34
 		$result.=$script.'})';
35 35
 		return $result;
36 36
 	}
37 37
 
38 38
 	protected function minify($input) {
39
-		if(trim($input) === "") return $input;
39
+		if (trim($input)==="") return $input;
40 40
 		return preg_replace(
41 41
 				array(
42 42
 						// Remove comment(s)
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,8 +16,9 @@  discard block
 block discarded – undo
16 16
 	 * @param mixed $view
17 17
 	 */
18 18
 	protected function _compileLibrary(BaseGui $library=NULL, &$view=NULL){
19
-		if(isset($view))
20
-			$library->compileHtml($this, $view);
19
+		if(isset($view)) {
20
+					$library->compileHtml($this, $view);
21
+		}
21 22
 		if ($library->isAutoCompile()) {
22 23
 			$library->compile(true);
23 24
 		}
@@ -36,7 +37,9 @@  discard block
 block discarded – undo
36 37
 	}
37 38
 
38 39
 	protected function minify($input) {
39
-		if(trim($input) === "") return $input;
40
+		if(trim($input) === "") {
41
+			return $input;
42
+		}
40 43
 		return preg_replace(
41 44
 				array(
42 45
 						// Remove comment(s)
Please login to merge, or discard this patch.
Ajax/semantic/widgets/base/InstanceViewer.php 3 patches
Doc Comments   +10 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@  discard block
 block discarded – undo
83 83
 
84 84
 	}
85 85
 
86
+	/**
87
+	 * @param integer $index
88
+	 */
86 89
 	protected function _getDefaultValue($name,$value,$index){
87 90
 		$func=$this->defaultValueFunction;
88 91
 		return $func($name,$value,$index,$this->instance);
@@ -244,6 +247,9 @@  discard block
 block discarded – undo
244 247
 		return $this;
245 248
 	}
246 249
 
250
+	/**
251
+	 * @param callable $callback
252
+	 */
247 253
 	public function setValueFunction($index,$callback){
248 254
 		$this->values[$index]=$callback;
249 255
 		return $this;
@@ -254,6 +260,9 @@  discard block
 block discarded – undo
254 260
 		return $this;
255 261
 	}
256 262
 
263
+	/**
264
+	 * @param integer $index
265
+	 */
257 266
 	public static function setIndex($index) {
258 267
 		self::$index=$index;
259 268
 	}
@@ -313,7 +322,7 @@  discard block
 block discarded – undo
313 322
 	 * The $callback function can take the following arguments : $field=>the compiled field, $instance : the active instance of the object, $index: the field position
314 323
 	 * @param int $index postion of the compiled field
315 324
 	 * @param callable $callback function called after the field compilation
316
-	 * @return \Ajax\semantic\widgets\datatable\InstanceViewer
325
+	 * @return InstanceViewer
317 326
 	 */
318 327
 	public function afterCompile($index,$callback){
319 328
 		$this->afterCompile[$index]=$callback;
Please login to merge, or discard this patch.
Spacing   +91 added lines, -91 removed lines patch added patch discarded remove patch
@@ -19,220 +19,220 @@  discard block
 block discarded – undo
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,self::$index);
121
-		}else{
122
-			$value=$this->_getDefaultValue($propertyName,$value, self::$index);
118
+	protected function _postGetValue($index, $propertyName, $value) {
119
+		if (isset($this->values[$index])) {
120
+			$value=$this->values[$index]($value, $this->instance, $index, self::$index);
121
+		} else {
122
+			$value=$this->_getDefaultValue($propertyName, $value, self::$index);
123 123
 		}
124
-		if(isset($this->afterCompile[$index])){
125
-			if(\is_callable($this->afterCompile[$index])){
126
-				$this->afterCompile[$index]($value,$this->instance,self::$index);
124
+		if (isset($this->afterCompile[$index])) {
125
+			if (\is_callable($this->afterCompile[$index])) {
126
+				$this->afterCompile[$index]($value, $this->instance, self::$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 addFields($fields){
157
-		$this->visibleProperties=\array_merge($this->visibleProperties,$fields);
156
+	public function addFields($fields) {
157
+		$this->visibleProperties=\array_merge($this->visibleProperties, $fields);
158 158
 		return $this;
159 159
 	}
160 160
 
161
-	public function count(){
161
+	public function count() {
162 162
 		return \sizeof($this->properties);
163 163
 	}
164 164
 
165
-	public function visiblePropertiesCount(){
165
+	public function visiblePropertiesCount() {
166 166
 		return \sizeof($this->visibleProperties);
167 167
 	}
168 168
 
169
-	public function getProperty($index){
169
+	public function getProperty($index) {
170 170
 		return $this->properties[$index];
171 171
 	}
172 172
 
173
-	public function getFieldName($index){
173
+	public function getFieldName($index) {
174 174
 		$property=$this->getProperty($index);
175
-		if($property instanceof \ReflectionProperty){
175
+		if ($property instanceof \ReflectionProperty) {
176 176
 			$result=$property->getName();
177
-		}elseif(\is_callable($property)){
177
+		}elseif (\is_callable($property)) {
178 178
 			$result=$this->visibleProperties[$index];
179
-		}else{
179
+		} else {
180 180
 			$result=$property;
181 181
 		}
182 182
 		return $result;
183 183
 	}
184 184
 
185 185
 
186
-	protected function showableProperty(\ReflectionProperty $rProperty){
187
-		return JString::startswith($rProperty->getName(),"_")===false;
186
+	protected function showableProperty(\ReflectionProperty $rProperty) {
187
+		return JString::startswith($rProperty->getName(), "_")===false;
188 188
 	}
189 189
 
190 190
 	public function setInstance($instance) {
191
-		if(\is_string($instance)){
191
+		if (\is_string($instance)) {
192 192
 			$instance=new $instance();
193 193
 		}
194 194
 		$this->instance=$instance;
195 195
 		$this->properties=[];
196 196
 		$this->reflect=new \ReflectionClass($instance);
197
-		if(\sizeof($this->visibleProperties)===0){
197
+		if (\sizeof($this->visibleProperties)===0) {
198 198
 			$this->properties=$this->getDefaultProperties();
199
-		}else{
200
-			foreach ($this->visibleProperties as $property){
199
+		} else {
200
+			foreach ($this->visibleProperties as $property) {
201 201
 				$this->setInstanceProperty($property);
202 202
 			}
203 203
 		}
204 204
 		return $this;
205 205
 	}
206 206
 
207
-	private function setInstanceProperty($property){
208
-		if(\is_callable($property)){
207
+	private function setInstanceProperty($property) {
208
+		if (\is_callable($property)) {
209 209
 			$this->properties[]=$property;
210
-		}elseif(\is_string($property)){
211
-			try{
210
+		}elseif (\is_string($property)) {
211
+			try {
212 212
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
213 213
 				$rProperty=$this->reflect->getProperty($property);
214 214
 				$this->properties[]=$rProperty;
215
-			}catch(\Exception $e){
215
+			}catch (\Exception $e) {
216 216
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
217 217
 				$this->properties[]=$property;
218 218
 			}
219
-		}elseif(\is_int($property)){
219
+		}elseif (\is_int($property)) {
220 220
 			$props=$this->getDefaultProperties();
221
-			if(isset($props[$property]))
221
+			if (isset($props[$property]))
222 222
 				$this->properties[]=$props[$property];
223 223
 				else
224 224
 					$this->properties[]=$property;
225
-		}else{
225
+		} else {
226 226
 			$this->properties[]=$property;
227 227
 		}
228 228
 	}
229 229
 
230
-	protected function getDefaultProperties(){
230
+	protected function getDefaultProperties() {
231 231
 		$result=[];
232 232
 		$properties=$this->reflect->getProperties();
233
-		foreach ($properties as $property){
233
+		foreach ($properties as $property) {
234 234
 			$showable=$this->showableProperty($property);
235
-			if($showable!==false){
235
+			if ($showable!==false) {
236 236
 				$result[]=$property;
237 237
 			}
238 238
 		}
@@ -244,12 +244,12 @@  discard block
 block discarded – undo
244 244
 		return $this;
245 245
 	}
246 246
 
247
-	public function setValueFunction($index,$callback){
247
+	public function setValueFunction($index, $callback) {
248 248
 		$this->values[$index]=$callback;
249 249
 		return $this;
250 250
 	}
251 251
 
252
-	public function setIdentifierFunction($callback){
252
+	public function setIdentifierFunction($callback) {
253 253
 		$this->values["identifier"]=$callback;
254 254
 		return $this;
255 255
 	}
@@ -262,42 +262,42 @@  discard block
 block discarded – undo
262 262
 		return $this->properties;
263 263
 	}
264 264
 
265
-	public function getCaption($index){
266
-		if(isset($this->captions[$index])){
265
+	public function getCaption($index) {
266
+		if (isset($this->captions[$index])) {
267 267
 			return $this->captions[$index];
268 268
 		}
269
-		if($this->properties[$index] instanceof \ReflectionProperty)
269
+		if ($this->properties[$index] instanceof \ReflectionProperty)
270 270
 			return $this->properties[$index]->getName();
271
-		elseif(\is_callable($this->properties[$index]))
271
+		elseif (\is_callable($this->properties[$index]))
272 272
 			return "";
273 273
 		else
274 274
 			return $this->properties[$index];
275 275
 	}
276 276
 
277
-	public function getCaptions(){
277
+	public function getCaptions() {
278 278
 		$count=$this->count();
279
-		if(isset($this->captions)){
280
-			$captions= \array_values($this->captions);
279
+		if (isset($this->captions)) {
280
+			$captions=\array_values($this->captions);
281 281
 			$captionsSize=\sizeof($captions);
282
-			for($i=$captionsSize;$i<$count;$i++){
282
+			for ($i=$captionsSize; $i<$count; $i++) {
283 283
 				$captions[]="";
284 284
 			}
285
-		}else{
285
+		} else {
286 286
 			$captions=[];
287 287
 			$index=0;
288
-			while($index<$count){
288
+			while ($index<$count) {
289 289
 				$captions[]=$this->getCaption($index++);
290 290
 			}
291 291
 		}
292
-		if(isset($this->captionCallback) && \is_callable($this->captionCallback)){
292
+		if (isset($this->captionCallback) && \is_callable($this->captionCallback)) {
293 293
 			$callback=$this->captionCallback;
294
-			$callback($captions,$this->instance);
294
+			$callback($captions, $this->instance);
295 295
 		}
296 296
 		return $captions;
297 297
 	}
298 298
 
299
-	public function setCaption($index,$caption){
300
-		if(isset($this->captions)===false)
299
+	public function setCaption($index, $caption) {
300
+		if (isset($this->captions)===false)
301 301
 			$this->captions=[];
302 302
 		$this->captions[$index]=$caption;
303 303
 		return $this;
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 	 * @param callable $callback function called after the field compilation
316 316
 	 * @return \Ajax\semantic\widgets\datatable\InstanceViewer
317 317
 	 */
318
-	public function afterCompile($index,$callback){
318
+	public function afterCompile($index, $callback) {
319 319
 		$this->afterCompile[$index]=$callback;
320 320
 		return $this;
321 321
 	}
Please login to merge, or discard this patch.
Braces   +42 added lines, -36 removed lines patch added patch discarded remove patch
@@ -23,8 +23,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,self::$index);
121
-		}else{
124
+		} else{
122 125
 			$value=$this->_getDefaultValue($propertyName,$value, self::$index);
123 126
 		}
124 127
 		if(isset($this->afterCompile[$index])){
@@ -139,10 +142,10 @@  discard block
 block discarded – undo
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;
@@ -174,9 +177,9 @@  discard block
 block discarded – undo
174 177
 		$property=$this->getProperty($index);
175 178
 		if($property instanceof \ReflectionProperty){
176 179
 			$result=$property->getName();
177
-		}elseif(\is_callable($property)){
180
+		} elseif(\is_callable($property)){
178 181
 			$result=$this->visibleProperties[$index];
179
-		}else{
182
+		} else{
180 183
 			$result=$property;
181 184
 		}
182 185
 		return $result;
@@ -196,7 +199,7 @@  discard block
 block discarded – undo
196 199
 		$this->reflect=new \ReflectionClass($instance);
197 200
 		if(\sizeof($this->visibleProperties)===0){
198 201
 			$this->properties=$this->getDefaultProperties();
199
-		}else{
202
+		} else{
200 203
 			foreach ($this->visibleProperties as $property){
201 204
 				$this->setInstanceProperty($property);
202 205
 			}
@@ -207,22 +210,23 @@  discard block
 block discarded – undo
207 210
 	private function setInstanceProperty($property){
208 211
 		if(\is_callable($property)){
209 212
 			$this->properties[]=$property;
210
-		}elseif(\is_string($property)){
213
+		} elseif(\is_string($property)){
211 214
 			try{
212 215
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
213 216
 				$rProperty=$this->reflect->getProperty($property);
214 217
 				$this->properties[]=$rProperty;
215
-			}catch(\Exception $e){
218
+			} catch(\Exception $e){
216 219
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
217 220
 				$this->properties[]=$property;
218 221
 			}
219
-		}elseif(\is_int($property)){
222
+		} elseif(\is_int($property)){
220 223
 			$props=$this->getDefaultProperties();
221
-			if(isset($props[$property]))
222
-				$this->properties[]=$props[$property];
223
-				else
224
-					$this->properties[]=$property;
225
-		}else{
224
+			if(isset($props[$property])) {
225
+							$this->properties[]=$props[$property];
226
+			} else {
227
+									$this->properties[]=$property;
228
+				}
229
+		} else{
226 230
 			$this->properties[]=$property;
227 231
 		}
228 232
 	}
@@ -266,12 +270,13 @@  discard block
 block discarded – undo
266 270
 		if(isset($this->captions[$index])){
267 271
 			return $this->captions[$index];
268 272
 		}
269
-		if($this->properties[$index] instanceof \ReflectionProperty)
270
-			return $this->properties[$index]->getName();
271
-		elseif(\is_callable($this->properties[$index]))
272
-			return "";
273
-		else
274
-			return $this->properties[$index];
273
+		if($this->properties[$index] instanceof \ReflectionProperty) {
274
+					return $this->properties[$index]->getName();
275
+		} elseif(\is_callable($this->properties[$index])) {
276
+					return "";
277
+		} else {
278
+					return $this->properties[$index];
279
+		}
275 280
 	}
276 281
 
277 282
 	public function getCaptions(){
@@ -282,7 +287,7 @@  discard block
 block discarded – undo
282 287
 			for($i=$captionsSize;$i<$count;$i++){
283 288
 				$captions[]="";
284 289
 			}
285
-		}else{
290
+		} else{
286 291
 			$captions=[];
287 292
 			$index=0;
288 293
 			while($index<$count){
@@ -297,8 +302,9 @@  discard block
 block discarded – undo
297 302
 	}
298 303
 
299 304
 	public function setCaption($index,$caption){
300
-		if(isset($this->captions)===false)
301
-			$this->captions=[];
305
+		if(isset($this->captions)===false) {
306
+					$this->captions=[];
307
+		}
302 308
 		$this->captions[$index]=$caption;
303 309
 		return $this;
304 310
 	}
Please login to merge, or discard this patch.