Completed
Push — master ( f99fed...57dceb )
by Jean-Christophe
03:29
created
Ajax/common/traits/JqueryAjaxTrait.php 1 patch
Braces   +32 added lines, -24 removed lines patch added patch discarded remove patch
@@ -48,8 +48,9 @@  discard block
 block discarded – undo
48 48
 		}
49 49
 		$retour.="$.".$method."(url,".$params.").done(function( data ) {\n";
50 50
 		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n";
51
-		if ($immediatly)
52
-			$this->jquery_code_for_compile[]=$retour;
51
+		if ($immediatly) {
52
+					$this->jquery_code_for_compile[]=$retour;
53
+		}
53 54
 		return $retour;
54 55
 	}
55 56
 
@@ -67,15 +68,17 @@  discard block
 block discarded – undo
67 68
 		$url=$this->_correctAjaxUrl($url);
68 69
 		$retour="url='".$url."';";
69 70
 		$slash="/";
70
-		if(JString::endswith($url, "/")===true)
71
-			$slash="";
71
+		if(JString::endswith($url, "/")===true) {
72
+					$slash="";
73
+		}
72 74
 		if(JString::isNotNull($attr)){
73
-			if ($attr==="value")
74
-				$retour.="url=url+'".$slash."'+$(this).val();\n";
75
-			elseif ($attr==="html")
76
-			$retour.="url=url+'".$slash."'+$(this).html();\n";
77
-			elseif($attr!=null && $attr!=="")
78
-					$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
75
+			if ($attr==="value") {
76
+							$retour.="url=url+'".$slash."'+$(this).val();\n";
77
+			} elseif ($attr==="html") {
78
+						$retour.="url=url+'".$slash."'+$(this).html();\n";
79
+			} elseif($attr!=null && $attr!=="") {
80
+								$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
81
+			}
79 82
 		}
80 83
 		return $retour;
81 84
 	}
@@ -85,13 +88,14 @@  discard block
 block discarded – undo
85 88
 		if ($responseElement!=="") {
86 89
 			if(isset($ajaxTransition)){
87 90
 				$call=$this->setAjaxDataCall($ajaxTransition);
88
-			}elseif(isset($this->ajaxTransition)){
91
+			} elseif(isset($this->ajaxTransition)){
89 92
 				$call=$this->ajaxTransition;
90 93
 			}
91
-			if(\is_callable($call))
92
-				$retour="\t".$call($responseElement,$jqueryDone).";\n";
93
-			else
94
-				$retour="\t$({$responseElement}).{$jqueryDone}( data );\n";
94
+			if(\is_callable($call)) {
95
+							$retour="\t".$call($responseElement,$jqueryDone).";\n";
96
+			} else {
97
+							$retour="\t$({$responseElement}).{$jqueryDone}( data );\n";
98
+			}
95 99
 		}
96 100
 		$retour.="\t".$jsCallback."\n";
97 101
 		return $retour;
@@ -105,8 +109,9 @@  discard block
 block discarded – undo
105 109
 	}
106 110
 
107 111
 	protected function _correctAjaxUrl($url) {
108
-		if ($url!=="/" && JString::endsWith($url, "/")===true)
109
-			$url=substr($url, 0, strlen($url)-1);
112
+		if ($url!=="/" && JString::endsWith($url, "/")===true) {
113
+					$url=substr($url, 0, strlen($url)-1);
114
+		}
110 115
 		if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) {
111 116
 			$url=$this->jsUtils->getUrl($url);
112 117
 		}
@@ -130,8 +135,9 @@  discard block
 block discarded – undo
130 135
 				$retour.="\t".$jsCallback."\n".
131 136
 						"\t$(document).trigger('jsonReady',[data]);\n".
132 137
 						"});\n";
133
-				if ($immediatly)
134
-					$this->jquery_code_for_compile[]=$retour;
138
+				if ($immediatly) {
139
+									$this->jquery_code_for_compile[]=$retour;
140
+				}
135 141
 					return $retour;
136 142
 	}
137 143
 
@@ -170,7 +176,7 @@  discard block
 block discarded – undo
170 176
 		if($context===null){
171 177
 			$parent="$('".$maskSelector."').parent()";
172 178
 			$newElm = "$('#'+newId)";
173
-		}else{
179
+		} else{
174 180
 			$parent=$context;
175 181
 			$newElm = $context.".find('#'+newId)";
176 182
 		}
@@ -183,8 +189,9 @@  discard block
 block discarded – undo
183 189
 		$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";
184 190
 		$retour.="\t$(document).trigger('jsonReady',[data]);\n";
185 191
 		$retour.="\t".$jsCallback."\n"."});\n";
186
-		if ($immediatly)
187
-			$this->jquery_code_for_compile[]=$retour;
192
+		if ($immediatly) {
193
+					$this->jquery_code_for_compile[]=$retour;
194
+		}
188 195
 			return $retour;
189 196
 	}
190 197
 	/**
@@ -225,8 +232,9 @@  discard block
 block discarded – undo
225 232
 			}});\n";
226 233
 			$retour.="$('#".$form."').submit();\n";
227 234
 		}
228
-		if ($immediatly)
229
-			$this->jquery_code_for_compile[]=$retour;
235
+		if ($immediatly) {
236
+					$this->jquery_code_for_compile[]=$retour;
237
+		}
230 238
 			return $retour;
231 239
 	}
232 240
 
Please login to merge, or discard this patch.
Ajax/service/AjaxCall.php 1 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
 		$result="";
20 21
 		$params="{}";
21 22
 		$jsCallback=NULL;
Please login to merge, or discard this patch.
Ajax/service/JReflection.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 					if($class->getProperty($property)!==null){
22 22
 						\call_user_func_array([$object,$name],[$value]);
23 23
 					}
24
-				}catch(\Exception $e){}
24
+				} catch(\Exception $e){}
25 25
 			}
26 26
 		}
27 27
 		return $object;
Please login to merge, or discard this patch.
Ajax/Jquery.php 1 patch
Braces   +26 added lines, -17 removed lines patch added patch discarded remove patch
@@ -54,8 +54,9 @@  discard block
 block discarded – undo
54 54
 				$this->params[$key]=$params[$key];
55 55
 		}
56 56
 		$this->jsUtils=$jsUtils;
57
-		if(isset($params["ajaxTransition"]))
58
-			$this->ajaxTransition=$this->setAjaxDataCall($params["ajaxTransition"]);
57
+		if(isset($params["ajaxTransition"])) {
58
+					$this->ajaxTransition=$this->setAjaxDataCall($params["ajaxTransition"]);
59
+		}
59 60
 	}
60 61
 
61 62
 	/**
@@ -138,10 +139,12 @@  discard block
 block discarded – undo
138 139
 		if (isset($param)) {
139 140
 			$param=Javascript::prep_value($param);
140 141
 			$str="$({$element}).{$jQueryCall}({$param});";
141
-		} else
142
-			$str="$({$element}).{$jQueryCall}();";
143
-			if ($immediatly)
144
-				$this->jquery_code_for_compile[]=$str;
142
+		} else {
143
+					$str="$({$element}).{$jQueryCall}();";
144
+		}
145
+			if ($immediatly) {
146
+							$this->jquery_code_for_compile[]=$str;
147
+			}
145 148
 			return $str;
146 149
 	}
147 150
 	/**
@@ -156,8 +159,9 @@  discard block
 block discarded – undo
156 159
 		$to=Javascript::prep_element($to);
157 160
 		$element=Javascript::prep_element($element);
158 161
 		$str="$({$to}).{$jQueryCall}({$element});";
159
-		if ($immediatly)
160
-			$this->jquery_code_for_compile[]=$str;
162
+		if ($immediatly) {
163
+					$this->jquery_code_for_compile[]=$str;
164
+		}
161 165
 			return $str;
162 166
 	}
163 167
 
@@ -213,12 +217,14 @@  discard block
 block discarded – undo
213 217
 		if ($stopPropagation===true) {
214 218
 			$js=Javascript::$stopPropagation.$js;
215 219
 		}
216
-		if (array_search($event, $this->jquery_events)===false)
217
-			$event="\n\t$(".Javascript::prep_element($element).").bind('{$event}',function(event){\n\t\t{$js}\n\t});\n";
218
-		else
219
-			$event="\n\t$(".Javascript::prep_element($element).").{$event}(function(event){\n\t\t{$js}\n\t});\n";
220
-		if($immediatly)
221
-			$this->jquery_code_for_compile[]=$event;
220
+		if (array_search($event, $this->jquery_events)===false) {
221
+					$event="\n\t$(".Javascript::prep_element($element).").bind('{$event}',function(event){\n\t\t{$js}\n\t});\n";
222
+		} else {
223
+					$event="\n\t$(".Javascript::prep_element($element).").{$event}(function(event){\n\t\t{$js}\n\t});\n";
224
+		}
225
+		if($immediatly) {
226
+					$this->jquery_code_for_compile[]=$event;
227
+		}
222 228
 		return $event;
223 229
 	}
224 230
 
@@ -261,8 +267,9 @@  discard block
 block discarded – undo
261 267
 
262 268
 	public function getScript($offset=0){
263 269
 		$code=$this->jquery_code_for_compile;
264
-		if($offset>0)
265
-			$code=\array_slice($code, $offset);
270
+		if($offset>0) {
271
+					$code=\array_slice($code, $offset);
272
+		}
266 273
 		return implode('', $code);
267 274
 	}
268 275
 
@@ -314,7 +321,9 @@  discard block
 block discarded – undo
314 321
 	}
315 322
 
316 323
 	private function minify($input) {
317
-	if(trim($input) === "") return $input;
324
+	if(trim($input) === "") {
325
+		return $input;
326
+	}
318 327
 	return preg_replace(
319 328
 			array(
320 329
 					// Remove comment(s)
Please login to merge, or discard this patch.
Ajax/semantic/widgets/base/InstanceViewer.php 1 patch
Braces   +43 added lines, -37 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
 	}
@@ -93,7 +96,7 @@  discard block
 block discarded – undo
93 96
 		$value=$property->getValue($this->instance);
94 97
 		if(isset($this->values[$index])){
95 98
 			$value= $this->values[$index]($value,$this->instance,$index);
96
-		}else{
99
+		} else{
97 100
 			$value=$this->_getDefaultValue($property->getName(),$value, $index);
98 101
 		}
99 102
 		return $value;
@@ -103,16 +106,16 @@  discard block
 block discarded – undo
103 106
 		$value=null;
104 107
 		if($property instanceof \ReflectionProperty){
105 108
 			$value=$this->_getPropertyValue($property, $index);
106
-		}else{
107
-			if(\is_callable($property))
108
-				$value=$property($this->instance);
109
-			elseif(\is_array($property)){
109
+		} else{
110
+			if(\is_callable($property)) {
111
+							$value=$property($this->instance);
112
+			} elseif(\is_array($property)){
110 113
 				$values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property);
111 114
 				$value=\implode("", $values);
112
-			}else{
115
+			} else{
113 116
 				if(isset($this->values[$index])){
114 117
 					$value= $this->values[$index]($property,$this->instance,$index);
115
-				}elseif(isset($this->instance->{$property})){
118
+				} elseif(isset($this->instance->{$property})){
116 119
 					$value=$this->instance->{$property};
117 120
 				}
118 121
 			}
@@ -135,10 +138,10 @@  discard block
 block discarded – undo
135 138
 		if(isset($vb[$index])){
136 139
 			if(\is_array($vb[$index])){
137 140
 				$this->visibleProperties[$index][]=$field;
138
-			}else{
141
+			} else{
139 142
 				$this->visibleProperties[$index]=[$vb[$index],$field];
140 143
 			}
141
-		}else{
144
+		} else{
142 145
 			return $this->insertField($index, $field);
143 146
 		}
144 147
 		return $this;
@@ -165,9 +168,9 @@  discard block
 block discarded – undo
165 168
 		$property=$this->getProperty($index);
166 169
 		if($property instanceof \ReflectionProperty){
167 170
 			$result=$property->getName();
168
-		}elseif(\is_callable($property)){
171
+		} elseif(\is_callable($property)){
169 172
 			$result=$this->visibleProperties[$index];
170
-		}else{
173
+		} else{
171 174
 			$result=$property;
172 175
 		}
173 176
 		return $result;
@@ -187,7 +190,7 @@  discard block
 block discarded – undo
187 190
 		$this->reflect=new \ReflectionClass($instance);
188 191
 		if(\sizeof($this->visibleProperties)===0){
189 192
 			$this->properties=$this->getDefaultProperties();
190
-		}else{
193
+		} else{
191 194
 			foreach ($this->visibleProperties as $property){
192 195
 				$this->setInstanceProperty($property);
193 196
 			}
@@ -198,22 +201,23 @@  discard block
 block discarded – undo
198 201
 	private function setInstanceProperty($property){
199 202
 		if(\is_callable($property)){
200 203
 			$this->properties[]=$property;
201
-		}elseif(\is_string($property)){
204
+		} elseif(\is_string($property)){
202 205
 			try{
203 206
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
204 207
 				$rProperty=$this->reflect->getProperty($property);
205 208
 				$this->properties[]=$rProperty;
206
-			}catch(\Exception $e){
209
+			} catch(\Exception $e){
207 210
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
208 211
 				$this->properties[]=$property;
209 212
 			}
210
-		}elseif(\is_int($property)){
213
+		} elseif(\is_int($property)){
211 214
 			$props=$this->getDefaultProperties();
212
-			if(isset($props[$property]))
213
-				$this->properties[]=$props[$property];
214
-				else
215
-					$this->properties[]=$property;
216
-		}else{
215
+			if(isset($props[$property])) {
216
+							$this->properties[]=$props[$property];
217
+			} else {
218
+									$this->properties[]=$property;
219
+				}
220
+		} else{
217 221
 			$this->properties[]=$property;
218 222
 		}
219 223
 	}
@@ -257,12 +261,13 @@  discard block
 block discarded – undo
257 261
 		if(isset($this->captions[$index])){
258 262
 			return $this->captions[$index];
259 263
 		}
260
-		if($this->properties[$index] instanceof \ReflectionProperty)
261
-			return $this->properties[$index]->getName();
262
-		elseif(\is_callable($this->properties[$index]))
263
-			return "";
264
-		else
265
-			return $this->properties[$index];
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];
270
+		}
266 271
 	}
267 272
 
268 273
 	public function getCaptions(){
@@ -271,7 +276,7 @@  discard block
 block discarded – undo
271 276
 			for($i=\sizeof($captions);$i<$this->count();$i++){
272 277
 				$captions[]="";
273 278
 			}
274
-		}else{
279
+		} else{
275 280
 			$captions=[];
276 281
 			$index=0;
277 282
 			$count=$this->count();
@@ -287,8 +292,9 @@  discard block
 block discarded – undo
287 292
 	}
288 293
 
289 294
 	public function setCaption($index,$caption){
290
-		if(isset($this->captions)===false)
291
-			$this->captions=[];
295
+		if(isset($this->captions)===false) {
296
+					$this->captions=[];
297
+		}
292 298
 		$this->captions[$index]=$caption;
293 299
 		return $this;
294 300
 	}
Please login to merge, or discard this patch.
Ajax/semantic/widgets/datatable/HasCheckboxesTrait.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -50,8 +50,9 @@  discard block
 block discarded – undo
50 50
 			if(isset($this->_checkedClass)){
51 51
 				$checkedMessageCall.="$(this).closest('tr').toggleClass('".$this->_checkedClass."',$(this).prop('checked'));";
52 52
 			}
53
-			if(isset($js))
54
-				$js->exec($this->_getCheckedMessageFunction(),true);
53
+			if(isset($js)) {
54
+							$js->exec($this->_getCheckedMessageFunction(),true);
55
+			}
55 56
 		}
56 57
 		return $checkedMessageCall;
57 58
 	}
@@ -59,8 +60,9 @@  discard block
 block discarded – undo
59 60
 	protected function _generateMainCheckbox(&$captions){
60 61
 		$ck=new HtmlCheckbox("main-ck-".$this->identifier,"");
61 62
 		$checkedMessageCall="";
62
-		if($this->_hasCheckedMessage)
63
-			$checkedMessageCall="$('#{$this->identifier}').trigger('updateChecked');";
63
+		if($this->_hasCheckedMessage) {
64
+					$checkedMessageCall="$('#{$this->identifier}').trigger('updateChecked');";
65
+		}
64 66
 
65 67
 			$ck->setOnChecked($this->_setAllChecked("true").$checkedMessageCall);
66 68
 			$ck->setOnUnchecked($this->_setAllChecked("false").$checkedMessageCall);
@@ -108,8 +110,9 @@  discard block
 block discarded – undo
108 110
 	 * @param callable $callback
109 111
 	 */
110 112
 	public function addCountCheckedInToolbar(array $checkedMessage=null,$callback=null){
111
-		if(isset($checkedMessage))
112
-			$this->_checkedMessage=$checkedMessage;
113
+		if(isset($checkedMessage)) {
114
+					$this->_checkedMessage=$checkedMessage;
115
+		}
113 116
 			$checkedMessage=$this->getCheckedMessage();
114 117
 			$this->_hasCheckboxes=true;
115 118
 			$this->_hasCheckedMessage=true;
Please login to merge, or discard this patch.
Ajax/semantic/widgets/datatable/DataTable.php 1 patch
Braces   +29 added lines, -20 removed lines patch added patch discarded remove patch
@@ -54,10 +54,12 @@  discard block
 block discarded – undo
54 54
 			$js->execOn("mouseover", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'visible');",["preventDefault"=>false,"stopPropagation"=>true]);
55 55
 			$js->execOn("mouseout", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'hidden');",["preventDefault"=>false,"stopPropagation"=>true]);
56 56
 		}
57
-		if(\is_array($this->_deleteBehavior))
58
-			$this->_generateBehavior("delete",$this->_deleteBehavior, $js);
59
-		if(\is_array($this->_editBehavior))
60
-			$this->_generateBehavior("edit",$this->_editBehavior,$js);
57
+		if(\is_array($this->_deleteBehavior)) {
58
+					$this->_generateBehavior("delete",$this->_deleteBehavior, $js);
59
+		}
60
+		if(\is_array($this->_editBehavior)) {
61
+					$this->_generateBehavior("edit",$this->_editBehavior,$js);
62
+		}
61 63
 		return parent::run($js);
62 64
 	}
63 65
 
@@ -92,12 +94,14 @@  discard block
 block discarded – undo
92 94
 
93 95
 			$table->setRowCount(0, \sizeof($captions));
94 96
 			$table->setHeaderValues($captions);
95
-			if(isset($this->_compileParts))
96
-				$table->setCompileParts($this->_compileParts);
97
+			if(isset($this->_compileParts)) {
98
+							$table->setCompileParts($this->_compileParts);
99
+			}
97 100
 
98 101
 			if(isset($this->_searchField) && isset($js)){
99
-				if(isset($this->_urls["refresh"]))
100
-					$this->_searchField->postOn("change", $this->_urls["refresh"],"{'s':$(this).val()}","#".$this->identifier." tbody",["preventDefault"=>false,"jqueryDone"=>"replaceWith"]);
102
+				if(isset($this->_urls["refresh"])) {
103
+									$this->_searchField->postOn("change", $this->_urls["refresh"],"{'s':$(this).val()}","#".$this->identifier." tbody",["preventDefault"=>false,"jqueryDone"=>"replaceWith"]);
104
+				}
101 105
 			}
102 106
 
103 107
 			$this->_generateContent($table);
@@ -148,8 +152,9 @@  discard block
 block discarded – undo
148 152
 			$field=$ck->getField();
149 153
 			$field->setProperty("value",$this->_instanceViewer->getIdentifier());
150 154
 			$field->setProperty("name", "selection[]");
151
-			if(isset($checkedClass))
152
-				$field->setClass($checkedClass);
155
+			if(isset($checkedClass)) {
156
+							$field->setClass($checkedClass);
157
+			}
153 158
 			\array_unshift($values, $ck);
154 159
 		}
155 160
 		$result=$table->newRow();
@@ -161,8 +166,9 @@  discard block
 block discarded – undo
161 166
 
162 167
 	protected function _generatePagination($table,$js=NULL){
163 168
 		if(isset($this->_toolbar)){
164
-			if($this->_toolbarPosition==PositionInTable::FOOTER)
165
-				$this->_toolbar->setFloated("left");
169
+			if($this->_toolbarPosition==PositionInTable::FOOTER) {
170
+							$this->_toolbar->setFloated("left");
171
+			}
166 172
 		}
167 173
 		$footer=$table->getFooter();
168 174
 		$footer->mergeCol();
@@ -219,7 +225,7 @@  discard block
 block discarded – undo
219 225
 		$hasPart=$table->hasPart($part);
220 226
 		if($hasPart){
221 227
 			$row=$table->getPart($part)->addRow(\sizeof($captions));
222
-		}else{
228
+		} else{
223 229
 			$row=$table->getPart($part)->getRow(0);
224 230
 		}
225 231
 		$row->mergeCol();
@@ -244,7 +250,7 @@  discard block
 block discarded – undo
244 250
 			$this->_urls["refresh"]=JArray::getValue($urls, "refresh",0);
245 251
 			$this->_urls["edit"]=JArray::getValue($urls, "edit",1);
246 252
 			$this->_urls["delete"]=JArray::getValue($urls, "delete",2);
247
-		}else{
253
+		} else{
248 254
 			$this->_urls=["refresh"=>$urls,"edit"=>$urls,"delete"=>$urls];
249 255
 		}
250 256
 		return $this;
@@ -318,8 +324,9 @@  discard block
 block discarded – undo
318 324
 
319 325
 	protected function getTargetSelector() {
320 326
 		$result=$this->_targetSelector;
321
-		if(!isset($result))
322
-			$result="#".$this->identifier;
327
+		if(!isset($result)) {
328
+					$result="#".$this->identifier;
329
+		}
323 330
 		return $result;
324 331
 	}
325 332
 
@@ -334,8 +341,9 @@  discard block
 block discarded – undo
334 341
 	}
335 342
 
336 343
 	public function getRefreshSelector() {
337
-		if(isset($this->_refreshSelector))
338
-			return $this->_refreshSelector;
344
+		if(isset($this->_refreshSelector)) {
345
+					return $this->_refreshSelector;
346
+		}
339 347
 		return "#".$this->identifier." tbody";
340 348
 	}
341 349
 
@@ -346,8 +354,9 @@  discard block
 block discarded – undo
346 354
 
347 355
 	public function show($modelInstance){
348 356
 		if(\is_array($modelInstance)){
349
-			if(\is_array(array_values($modelInstance)[0]))
350
-				$modelInstance=\json_decode(\json_encode($modelInstance), FALSE);
357
+			if(\is_array(array_values($modelInstance)[0])) {
358
+							$modelInstance=\json_decode(\json_encode($modelInstance), FALSE);
359
+			}
351 360
 		}
352 361
 		$this->_modelInstance=$modelInstance;
353 362
 	}
Please login to merge, or discard this patch.
Ajax/semantic/widgets/datatable/Pagination.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,8 +89,9 @@
 block discarded – undo
89 89
 	}
90 90
 
91 91
 	public function setPagesVisibles($pages_visibles) {
92
-		if(!isset($pages_visibles))
93
-			$pages_visibles=(int)ceil($this->row_count / $this->items_per_page)+1;
92
+		if(!isset($pages_visibles)) {
93
+					$pages_visibles=(int)ceil($this->row_count / $this->items_per_page)+1;
94
+		}
94 95
 		$this->pages_visibles=$pages_visibles;
95 96
 		return $this;
96 97
 	}
Please login to merge, or discard this patch.
Ajax/semantic/widgets/datatable/JsonDataTable.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,9 @@
 block discarded – undo
48 48
 			$('#pagination-{$id} ._firstPage').attr('data-page',Math.max(1,page-1));
49 49
 			var lastPage=$('#pagination-{$id} ._lastPage');lastPage.attr('data-page',Math.min(lastPage.attr('data-max'),page+1));";
50 50
 		}
51
-		if(isset($this->_urls["refresh"]))
52
-			$this->jsonArrayOnClick($menu, $this->_urls["refresh"],"post","{'p':$(this).attr('data-page')}",$callback);
51
+		if(isset($this->_urls["refresh"])) {
52
+					$this->jsonArrayOnClick($menu, $this->_urls["refresh"],"post","{'p':$(this).attr('data-page')}",$callback);
53
+		}
53 54
 	}
54 55
 
55 56
 	/**
Please login to merge, or discard this patch.