Completed
Push — master ( 966ba4...93b0d7 )
by Jean-Christophe
02:34
created
Ajax/service/Javascript.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  discard block
 block discarded – undo
6 6
 	public static $preventDefault="\nif(event && event.preventDefault) event.preventDefault();\n";
7 7
 	public static $stopPropagation="\nif(event && event.stopPropagation) event.stopPropagation();\n";
8 8
 
9
-	public static function containsCode($expression){
10
-		return strrpos($expression, 'this')!==false||strrpos($expression, 'event')!==false||strrpos($expression, 'self')!==false;
9
+	public static function containsCode($expression) {
10
+		return strrpos($expression, 'this')!==false || strrpos($expression, 'event')!==false || strrpos($expression, 'self')!==false;
11 11
 	}
12 12
 
13 13
 	/**
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 		return $value;
44 44
 	}
45 45
 
46
-	public static function prep_jquery_selector($value){
47
-		if(JString::startswith($value, '$(')===false){
46
+	public static function prep_jquery_selector($value) {
47
+		if (JString::startswith($value, '$(')===false) {
48 48
 			return '$('.$value.')';
49 49
 		}
50 50
 		return $value;
Please login to merge, or discard this patch.
Ajax/service/AjaxTransition.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,26 +3,26 @@
 block discarded – undo
3 3
 use Ajax\semantic\html\base\constants\Transition;
4 4
 
5 5
 class AjaxTransition {
6
-	public static function none($responseElement,$jqueryDone="html"){
6
+	public static function none($responseElement, $jqueryDone="html") {
7 7
 		return $responseElement.".".$jqueryDone."( data )";
8 8
 	}
9 9
 
10
-	public static function jqFade($responseElement,$jqueryDone="html"){
10
+	public static function jqFade($responseElement, $jqueryDone="html") {
11 11
 		return $responseElement.".hide().{$jqueryDone}( data ).fadeIn()";
12 12
 	}
13 13
 
14
-	public static function jqSlide($responseElement,$jqueryDone="html"){
14
+	public static function jqSlide($responseElement, $jqueryDone="html") {
15 15
 		return $responseElement.".hide().{$jqueryDone}( data ).slideDown()";
16 16
 	}
17 17
 
18
-	public static function random($responseElement,$jqueryDone="html"){
18
+	public static function random($responseElement, $jqueryDone="html") {
19 19
 		$transitions=Transition::getConstantValues();
20
-		$transition=$transitions[\rand(0,\sizeof($transitions)-1)];
21
-		return self::__callStatic($transition, [$responseElement,$jqueryDone]);
20
+		$transition=$transitions[\rand(0, \sizeof($transitions)-1)];
21
+		return self::__callStatic($transition, [$responseElement, $jqueryDone]);
22 22
 	}
23 23
 
24
-	public static function __callStatic($name, $arguments){
25
-		if(\sizeof($arguments)==2){
24
+	public static function __callStatic($name, $arguments) {
25
+		if (\sizeof($arguments)==2) {
26 26
 			$responseElement=$arguments[0];
27 27
 			$jqueryDone=$arguments[1];
28 28
 			$name=JString::camelCaseToSeparated($name);
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlForm.php 2 patches
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class HtmlForm extends HtmlSemCollection {
22 22
 
23
-	use FieldsTrait,FormTrait;
23
+	use FieldsTrait, FormTrait;
24 24
 	/**
25 25
 	 * @var array
26 26
 	 */
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
 
34 34
 	public function __construct($identifier, $elements=array()) {
35 35
 		parent::__construct($identifier, "form", "ui form");
36
-		$this->_states=[ State::ERROR,State::SUCCESS,State::WARNING,State::DISABLED ];
36
+		$this->_states=[State::ERROR, State::SUCCESS, State::WARNING, State::DISABLED];
37 37
 		$this->setProperty("name", $this->identifier);
38
-		$this->_fields=array ();
38
+		$this->_fields=array();
39 39
 		$this->addItems($elements);
40 40
 		$this->_validationParams=[];
41 41
 	}
42 42
 
43
-	protected function getForm(){
43
+	protected function getForm() {
44 44
 		return $this;
45 45
 	}
46 46
 
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
 	 * @param string $caption
63 63
 	 * @return HtmlForm
64 64
 	 */
65
-	public function addDivider($caption=NULL){
66
-		return $this->addContent(new HtmlDivider("",$caption));
65
+	public function addDivider($caption=NULL) {
66
+		return $this->addContent(new HtmlDivider("", $caption));
67 67
 	}
68 68
 
69 69
 	/**
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
 						$label=NULL;
86 86
 				}
87 87
 				$this->_fields=\array_merge($this->_fields, $fields);
88
-				$fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields);
88
+				$fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count(), $fields);
89 89
 			}
90
-			if (isset($label)){
91
-				$fields->wrap("<div class='field'><label>{$label}</label>","</div>");
90
+			if (isset($label)) {
91
+				$fields->wrap("<div class='field'><label>{$label}</label>", "</div>");
92 92
 			}
93 93
 		} else {
94
-			$fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count());
94
+			$fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count());
95 95
 		}
96 96
 		$this->addItem($fields);
97 97
 		return $fields;
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
 	public function addItem($item) {
101 101
 		$item=parent::addItem($item);
102
-		if (\is_subclass_of($item, HtmlFormField::class) === true) {
102
+		if (\is_subclass_of($item, HtmlFormField::class)===true) {
103 103
 			$this->_fields[]=$item;
104 104
 		}
105 105
 		return $item;
@@ -157,39 +157,39 @@  discard block
 block discarded – undo
157 157
 
158 158
 
159 159
 
160
-	public function compile(JsUtils $js=NULL,&$view=NULL){
161
-		if(\sizeof($this->_validationParams)>0)
160
+	public function compile(JsUtils $js=NULL, &$view=NULL) {
161
+		if (\sizeof($this->_validationParams)>0)
162 162
 			$this->setProperty("novalidate", "");
163
-		return parent::compile($js,$view);
163
+		return parent::compile($js, $view);
164 164
 	}
165 165
 
166 166
 	public function run(JsUtils $js) {
167
-		if(isset($js)){
167
+		if (isset($js)) {
168 168
 			$compo=$js->semantic()->form("#".$this->identifier);
169
-		}else{
169
+		} else {
170 170
 			$compo=new Form();
171 171
 			$compo->attach("#".$this->identifier);
172 172
 		}
173
-		foreach ($this->_fields as $field){
174
-			if($field instanceof HtmlFormField){
173
+		foreach ($this->_fields as $field) {
174
+			if ($field instanceof HtmlFormField) {
175 175
 				$compo=$this->addCompoValidation($compo, $field);
176 176
 			}
177 177
 		}
178
-		foreach ($this->content as $field){
179
-			if($field instanceof HtmlFormFields){
178
+		foreach ($this->content as $field) {
179
+			if ($field instanceof HtmlFormFields) {
180 180
 				$items=$field->getItems();
181
-				foreach ($items as $_field){
182
-					if($_field instanceof HtmlFormField)
181
+				foreach ($items as $_field) {
182
+					if ($_field instanceof HtmlFormField)
183 183
 						$compo=$this->addCompoValidation($compo, $_field);
184 184
 				}
185 185
 			}
186 186
 		}
187
-		$this->_runValidationParams($compo,$js);
187
+		$this->_runValidationParams($compo, $js);
188 188
 		return $this->_bsComponent;
189 189
 	}
190 190
 
191
-	public function addValidationParam($paramName,$paramValue,$before="",$after=""){
192
-		$this->addBehavior($this->_validationParams, $paramName, $paramValue,$before,$after);
191
+	public function addValidationParam($paramName, $paramValue, $before="", $after="") {
192
+		$this->addBehavior($this->_validationParams, $paramName, $paramValue, $before, $after);
193 193
 		return $this;
194 194
 	}
195 195
 
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 		return $this->_validationParams;
203 203
 	}
204 204
 
205
-	public function removeValidationParam($param){
205
+	public function removeValidationParam($param) {
206 206
 		unset($this->_validationParams[$param]);
207 207
 		return $this;
208 208
 	}
Please login to merge, or discard this patch.
Braces   +22 added lines, -15 removed lines patch added patch discarded remove patch
@@ -52,8 +52,9 @@  discard block
 block discarded – undo
52 52
 	 */
53 53
 	public function addHeader($title, $niveau=1, $dividing=true) {
54 54
 		$header=new HtmlHeader("", $niveau, $title);
55
-		if ($dividing)
56
-			$header->setDividing();
55
+		if ($dividing) {
56
+					$header->setDividing();
57
+		}
57 58
 		return $this->addItem($header);
58 59
 	}
59 60
 
@@ -81,8 +82,9 @@  discard block
 block discarded – undo
81 82
 					if (\is_string($end)) {
82 83
 						$label=$end;
83 84
 						\array_pop($fields);
84
-					} else
85
-						$label=NULL;
85
+					} else {
86
+											$label=NULL;
87
+					}
86 88
 				}
87 89
 				$this->_fields=\array_merge($this->_fields, $fields);
88 90
 				$fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields);
@@ -146,27 +148,31 @@  discard block
 block discarded – undo
146 148
 	 */
147 149
 	public function addMessage($identifier, $content, $header=NULL, $icon=NULL, $type=NULL) {
148 150
 		$message=new HtmlMessage($identifier, $content);
149
-		if (isset($header))
150
-			$message->addHeader($header);
151
-		if (isset($icon))
152
-			$message->setIcon($icon);
153
-		if (isset($type))
154
-			$message->setStyle($type);
151
+		if (isset($header)) {
152
+					$message->addHeader($header);
153
+		}
154
+		if (isset($icon)) {
155
+					$message->setIcon($icon);
156
+		}
157
+		if (isset($type)) {
158
+					$message->setStyle($type);
159
+		}
155 160
 		return $this->addItem($message);
156 161
 	}
157 162
 
158 163
 
159 164
 
160 165
 	public function compile(JsUtils $js=NULL,&$view=NULL){
161
-		if(\sizeof($this->_validationParams)>0)
162
-			$this->setProperty("novalidate", "");
166
+		if(\sizeof($this->_validationParams)>0) {
167
+					$this->setProperty("novalidate", "");
168
+		}
163 169
 		return parent::compile($js,$view);
164 170
 	}
165 171
 
166 172
 	public function run(JsUtils $js) {
167 173
 		if(isset($js)){
168 174
 			$compo=$js->semantic()->form("#".$this->identifier);
169
-		}else{
175
+		} else{
170 176
 			$compo=new Form();
171 177
 			$compo->attach("#".$this->identifier);
172 178
 		}
@@ -179,8 +185,9 @@  discard block
 block discarded – undo
179 185
 			if($field instanceof HtmlFormFields){
180 186
 				$items=$field->getItems();
181 187
 				foreach ($items as $_field){
182
-					if($_field instanceof HtmlFormField)
183
-						$compo=$this->addCompoValidation($compo, $_field);
188
+					if($_field instanceof HtmlFormField) {
189
+											$compo=$this->addCompoValidation($compo, $_field);
190
+					}
184 191
 				}
185 192
 			}
186 193
 		}
Please login to merge, or discard this patch.
Ajax/semantic/components/validation/FieldValidation.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @version 1.001
8 8
  * Generates a JSON field validator
9 9
  */
10
-class FieldValidation implements \JsonSerializable{
10
+class FieldValidation implements \JsonSerializable {
11 11
 	/**
12 12
 	 * @var string
13 13
 	 */
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
 	protected $optional;
26 26
 
27
-	public function __construct($identifier){
27
+	public function __construct($identifier) {
28 28
 		$this->identifier=$identifier;
29 29
 		$this->rules=[];
30 30
 	}
@@ -48,22 +48,22 @@  discard block
 block discarded – undo
48 48
 	 * @param string $value
49 49
 	 * @return Rule
50 50
 	 */
51
-	public function addRule($type,$prompt=NULL,$value=NULL){
52
-		if($type instanceof  Rule)
51
+	public function addRule($type, $prompt=NULL, $value=NULL) {
52
+		if ($type instanceof  Rule)
53 53
 			$rule=$type;
54
-		else if(\is_array($type)){
54
+		else if (\is_array($type)) {
55 55
 			$value=JArray::getValue($type, "value", 2);
56 56
 			$prompt=JArray::getValue($type, "prompt", 1);
57 57
 			$type=JArray::getValue($type, "type", 0);
58
-			$rule=new Rule($type,$prompt,$value);
59
-		}else
60
-			$rule=new Rule($type,$prompt,$value);
58
+			$rule=new Rule($type, $prompt, $value);
59
+		} else
60
+			$rule=new Rule($type, $prompt, $value);
61 61
 		$this->rules[]=$rule;
62 62
 		return $rule;
63 63
 	}
64 64
 
65
-	public function jsonSerialize(){
66
-		return ["identifier"=>$this->identifier,"rules"=>$this->rules];
65
+	public function jsonSerialize() {
66
+		return ["identifier"=>$this->identifier, "rules"=>$this->rules];
67 67
 	}
68 68
 
69 69
 	public function setDepends($depends) {
Please login to merge, or discard this patch.
Braces   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -49,15 +49,16 @@
 block discarded – undo
49 49
 	 * @return Rule
50 50
 	 */
51 51
 	public function addRule($type,$prompt=NULL,$value=NULL){
52
-		if($type instanceof  Rule)
53
-			$rule=$type;
54
-		else if(\is_array($type)){
52
+		if($type instanceof  Rule) {
53
+					$rule=$type;
54
+		} else if(\is_array($type)){
55 55
 			$value=JArray::getValue($type, "value", 2);
56 56
 			$prompt=JArray::getValue($type, "prompt", 1);
57 57
 			$type=JArray::getValue($type, "type", 0);
58 58
 			$rule=new Rule($type,$prompt,$value);
59
-		}else
60
-			$rule=new Rule($type,$prompt,$value);
59
+		} else {
60
+					$rule=new Rule($type,$prompt,$value);
61
+		}
61 62
 		$this->rules[]=$rule;
62 63
 		return $rule;
63 64
 	}
Please login to merge, or discard this patch.
Ajax/semantic/components/Dropdown.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
 	 * @param string $action one of "select","auto","activate","combo","nothing","hide"
18 18
 	 * @return \Ajax\semantic\components\Dropdown
19 19
 	 */
20
-	public function setAction($action){
21
-		return $this->setParamCtrl("action", $action,array("select","auto","activate","combo","nothing","hide"));
20
+	public function setAction($action) {
21
+		return $this->setParamCtrl("action", $action, array("select", "auto", "activate", "combo", "nothing", "hide"));
22 22
 	}
23 23
 
24 24
 	/**
@@ -26,15 +26,15 @@  discard block
 block discarded – undo
26 26
 	 * @param string $event Event used to trigger dropdown (Hover, Click, Custom Event)
27 27
 	 * @return \Ajax\semantic\components\Dropdown
28 28
 	 */
29
-	public function setOn($event){
29
+	public function setOn($event) {
30 30
 		return $this->setParam("on", $event);
31 31
 	}
32 32
 
33
-	public function setFullTextSearch($value){
33
+	public function setFullTextSearch($value) {
34 34
 		return $this->setParam("fullTextSearch", $value);
35 35
 	}
36 36
 
37
-	public function setShowOnFocus($value){
37
+	public function setShowOnFocus($value) {
38 38
 		return $this->setParam("showOnFocus", $value);
39 39
 	}
40 40
 }
Please login to merge, or discard this patch.
Ajax/common/traits/JsUtilsAjaxTrait.php 2 patches
Spacing   +94 added lines, -94 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,78 +35,78 @@  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
-		$async=($async)?"true":"false";
42
-		$ajaxParameters=["url"=>"url","method"=>"'".\strtoupper($method)."'","async"=>$async];
43
-		if(isset($params)){
41
+		$async=($async) ? "true" : "false";
42
+		$ajaxParameters=["url"=>"url", "method"=>"'".\strtoupper($method)."'", "async"=>$async];
43
+		if (isset($params)) {
44 44
 			$ajaxParameters["data"]=self::_correctParams($params);
45 45
 		}
46
-		if(isset($headers)){
46
+		if (isset($headers)) {
47 47
 			$ajaxParameters["headers"]=$headers;
48 48
 		}
49 49
 		$this->createAjaxParameters($ajaxParameters, $parameters);
50 50
 		$retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data, textStatus, jqXHR ) {\n";
51
-		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n";
52
-		$retour=$this->_addJsCondition($jsCondition,$retour);
51
+		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback)."});\n";
52
+		$retour=$this->_addJsCondition($jsCondition, $retour);
53 53
 		if ($immediatly)
54 54
 			$this->jquery_code_for_compile[]=$retour;
55 55
 		return $retour;
56 56
 	}
57 57
 
58
-	protected function createAjaxParameters(&$original,$parameters){
59
-		$validParameters=["dataType"=>"'%value%'","beforeSend"=>"function(jqXHR,settings){%value%}","complete"=>"function(jqXHR){%value%}"];
60
-		foreach ($validParameters as $param=>$mask){
61
-			if(isset($parameters[$param])){
58
+	protected function createAjaxParameters(&$original, $parameters) {
59
+		$validParameters=["dataType"=>"'%value%'", "beforeSend"=>"function(jqXHR,settings){%value%}", "complete"=>"function(jqXHR){%value%}"];
60
+		foreach ($validParameters as $param=>$mask) {
61
+			if (isset($parameters[$param])) {
62 62
 				$original[$param]=\str_replace("%value%", $parameters[$param], $mask);
63 63
 			}
64 64
 		}
65 65
 	}
66 66
 
67
-	protected function implodeAjaxParameters($ajaxParameters){
68
-		$s = ''; foreach ($ajaxParameters as $k=>$v) { if ($s !== '') { $s .= ','; } $s .= "'{$k}':{$v}"; }
67
+	protected function implodeAjaxParameters($ajaxParameters) {
68
+		$s=''; foreach ($ajaxParameters as $k=>$v) { if ($s!=='') { $s.=','; } $s.="'{$k}':{$v}"; }
69 69
 		return $s;
70 70
 	}
71 71
 
72
-	protected function _addJsCondition($jsCondition,$jsSource){
73
-		if(isset($jsCondition)){
72
+	protected function _addJsCondition($jsCondition, $jsSource) {
73
+		if (isset($jsCondition)) {
74 74
 			return "if(".$jsCondition."){\n".$jsSource."\n}";
75 75
 		}
76 76
 		return $jsSource;
77 77
 	}
78 78
 
79 79
 
80
-	protected function _getAjaxUrl($url,$attr){
80
+	protected function _getAjaxUrl($url, $attr) {
81 81
 		$url=$this->_correctAjaxUrl($url);
82 82
 		$retour="url='".$url."';";
83 83
 		$slash="/";
84
-		if(JString::endswith($url, "/")===true){
84
+		if (JString::endswith($url, "/")===true) {
85 85
 			$slash="";
86 86
 		}
87
-		if(JString::isNotNull($attr)){
88
-			if ($attr==="value"){
87
+		if (JString::isNotNull($attr)) {
88
+			if ($attr==="value") {
89 89
 				$retour.="url=url+'".$slash."'+$(this).val();\n";
90
-			}elseif ($attr==="html"){
90
+			}elseif ($attr==="html") {
91 91
 				$retour.="url=url+'".$slash."'+$(this).html();\n";
92
-			}elseif(\substr($attr, 0,3)==="js:"){
92
+			}elseif (\substr($attr, 0, 3)==="js:") {
93 93
 				$retour.="url=url+'".$slash."'+".\substr($attr, 3).";\n";
94
-			}elseif($attr!==null && $attr!=="")
94
+			}elseif ($attr!==null && $attr!=="")
95 95
 				$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
96 96
 		}
97 97
 		return $retour;
98 98
 	}
99 99
 
100
-	protected function _getOnAjaxDone($responseElement,$jqueryDone,$ajaxTransition,$jsCallback){
101
-		$retour="";$call=null;
100
+	protected function _getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback) {
101
+		$retour=""; $call=null;
102 102
 		if (JString::isNotNull($responseElement)) {
103
-			if(isset($ajaxTransition)){
103
+			if (isset($ajaxTransition)) {
104 104
 				$call=$this->setAjaxDataCall($ajaxTransition);
105
-			}elseif(isset($this->ajaxTransition)){
105
+			}elseif (isset($this->ajaxTransition)) {
106 106
 				$call=$this->ajaxTransition;
107 107
 			}
108
-			if(\is_callable($call))
109
-				$retour="\t".$call($responseElement,$jqueryDone).";\n";
108
+			if (\is_callable($call))
109
+				$retour="\t".$call($responseElement, $jqueryDone).";\n";
110 110
 			else
111 111
 				$retour="\t{$responseElement}.{$jqueryDone}( data );\n";
112 112
 		}
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 		return $retour;
115 115
 	}
116 116
 
117
-	protected function _getResponseElement($responseElement){
117
+	protected function _getResponseElement($responseElement) {
118 118
 		if (JString::isNotNull($responseElement)) {
119 119
 			$responseElement=Javascript::prep_value($responseElement);
120 120
 			$responseElement=Javascript::prep_jquery_selector($responseElement);
@@ -125,26 +125,26 @@  discard block
 block discarded – undo
125 125
 	protected function _correctAjaxUrl($url) {
126 126
 		if ($url!=="/" && JString::endsWith($url, "/")===true)
127 127
 			$url=substr($url, 0, strlen($url)-1);
128
-			if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) {
128
+			if (strncmp($url, 'http://', 7)!=0 && strncmp($url, 'https://', 8)!=0) {
129 129
 				$url=$this->getUrl($url);
130 130
 			}
131 131
 			return $url;
132 132
 	}
133 133
 
134
-	public static function _correctParams($params){
135
-		if(JString::isNull($params)){
134
+	public static function _correctParams($params) {
135
+		if (JString::isNull($params)) {
136 136
 			return "";
137 137
 		}
138
-		if(\preg_match("@^\{.*?\}$@", $params)){
138
+		if (\preg_match("@^\{.*?\}$@", $params)) {
139 139
 			return '$.param('.$params.')';
140 140
 		}
141 141
 		return $params;
142 142
 	}
143 143
 
144
-	public static function _implodeParams($parameters){
144
+	public static function _implodeParams($parameters) {
145 145
 		$allParameters=[];
146
-		foreach ($parameters as $params){
147
-			if(isset($params))
146
+		foreach ($parameters as $params) {
147
+			if (isset($params))
148 148
 				$allParameters[]=self::_correctParams($params);
149 149
 		}
150 150
 		return \implode("+'&'+", $allParameters);
@@ -162,19 +162,19 @@  discard block
 block discarded – undo
162 162
 		$retour.="\t\t{$responseElement}.prepend('{$loading_notifier}');\n";
163 163
 	}
164 164
 
165
-	protected function setAjaxDataCall($params){
165
+	protected function setAjaxDataCall($params) {
166 166
 		$result=null;
167
-		if(!\is_callable($params)){
168
-			$result=function ($responseElement,$jqueryDone="html") use($params){
169
-				return AjaxTransition::{$params}($responseElement,$jqueryDone);
167
+		if (!\is_callable($params)) {
168
+			$result=function($responseElement, $jqueryDone="html") use($params){
169
+				return AjaxTransition::{$params}($responseElement, $jqueryDone);
170 170
 			};
171 171
 		}
172 172
 		return $result;
173 173
 	}
174 174
 
175
-	protected function setDefaultParameters(&$parameters,$default){
176
-		foreach ($default as $k=>$v){
177
-			if(!isset($parameters[$k]))
175
+	protected function setDefaultParameters(&$parameters, $default) {
176
+		foreach ($default as $k=>$v) {
177
+			if (!isset($parameters[$k]))
178 178
 				$parameters[$k]=$v;
179 179
 		}
180 180
 	}
@@ -188,8 +188,8 @@  discard block
 block discarded – undo
188 188
 	 * @param string $url The url of the request
189 189
 	 * @param string $responseElement selector of the HTML element displaying the answer
190 190
 	 */
191
-	private function _get($url, $responseElement="",$parameters=[]) {
192
-		return $this->_ajax("get", $url,$responseElement,$parameters);
191
+	private function _get($url, $responseElement="", $parameters=[]) {
192
+		return $this->_ajax("get", $url, $responseElement, $parameters);
193 193
 	}
194 194
 
195 195
 	/**
@@ -198,9 +198,9 @@  discard block
 block discarded – undo
198 198
 	 * @param string $responseElement selector of the HTML element displaying the answer
199 199
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
200 200
 	 */
201
-	public function get($url, $responseElement="",$parameters=[]) {
201
+	public function get($url, $responseElement="", $parameters=[]) {
202 202
 		$parameters["immediatly"]=true;
203
-		return $this->_get($url,$responseElement,$parameters);
203
+		return $this->_get($url, $responseElement, $parameters);
204 204
 	}
205 205
 
206 206
 	/**
@@ -210,9 +210,9 @@  discard block
 block discarded – undo
210 210
 	 * @param string $responseElement selector of the HTML element displaying the answer
211 211
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
212 212
 	 */
213
-	public function ajax($method,$url, $responseElement="", $parameters=[]) {
213
+	public function ajax($method, $url, $responseElement="", $parameters=[]) {
214 214
 		$parameters["immediatly"]=true;
215
-		return $this->_ajax($method,$url,$responseElement,$parameters);
215
+		return $this->_ajax($method, $url, $responseElement, $parameters);
216 216
 	}
217 217
 
218 218
 	/**
@@ -222,9 +222,9 @@  discard block
 block discarded – undo
222 222
 	 * @param string $responseElement selector of the HTML element displaying the answer
223 223
 	 * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
224 224
 	 */
225
-	public function ajaxDeferred($method,$url, $responseElement="", $parameters=[]) {
225
+	public function ajaxDeferred($method, $url, $responseElement="", $parameters=[]) {
226 226
 		$parameters["immediatly"]=false;
227
-		return $this->_ajax($method,$url,$responseElement,$parameters);
227
+		return $this->_ajax($method, $url, $responseElement, $parameters);
228 228
 	}
229 229
 
230 230
 	/**
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
 	 * @param string $context
238 238
 	 * @param boolean $immediatly
239 239
 	 */
240
-	private function _json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document",$immediatly=false) {
240
+	private function _json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document", $immediatly=false) {
241 241
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
242 242
 		$retour=$this->_getAjaxUrl($url, $attr);
243 243
 		$retour.="$.{$method}(url,".$params.").done(function( data ) {\n";
@@ -260,8 +260,8 @@  discard block
 block discarded – undo
260 260
 	 * @param string $context
261 261
 	 * @param boolean $immediatly
262 262
 	 */
263
-	public function json($url, $method="get", $params="{}", $jsCallback=NULL,$context="document",$immediatly=false) {
264
-		return $this->_json($url,$method,$params,$jsCallback,NULL,$context,$immediatly);
263
+	public function json($url, $method="get", $params="{}", $jsCallback=NULL, $context="document", $immediatly=false) {
264
+		return $this->_json($url, $method, $params, $jsCallback, NULL, $context, $immediatly);
265 265
 	}
266 266
 
267 267
 	/**
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
 	 * @param string $url the request address
272 272
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true)
273 273
 	 */
274
-	public function jsonOn($event,$element, $url,$parameters=array()) {
274
+	public function jsonOn($event, $element, $url, $parameters=array()) {
275 275
 		$preventDefault=true;
276 276
 		$stopPropagation=true;
277 277
 		$jsCallback=null;
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 		$params="{}";
282 282
 		$immediatly=true;
283 283
 		extract($parameters);
284
-		return $this->_add_event($element, $this->_json($url,$method, $params,$jsCallback, $attr,$context), $event, $preventDefault, $stopPropagation,$immediatly);
284
+		return $this->_add_event($element, $this->_json($url, $method, $params, $jsCallback, $attr, $context), $event, $preventDefault, $stopPropagation, $immediatly);
285 285
 	}
286 286
 
287 287
 	/**
@@ -292,8 +292,8 @@  discard block
 block discarded – undo
292 292
 	 * @param string $jsCallback javascript code to execute after the request
293 293
 	 * @param string $context jquery DOM element, array container.
294 294
 	 */
295
-	public function jsonDeferred($url, $method="get", $params="{}", $jsCallback=NULL,$context=NULL) {
296
-		return $this->json($url, $method, $params, $jsCallback, $context,false);
295
+	public function jsonDeferred($url, $method="get", $params="{}", $jsCallback=NULL, $context=NULL) {
296
+		return $this->json($url, $method, $params, $jsCallback, $context, false);
297 297
 	}
298 298
 
299 299
 	/**
@@ -306,22 +306,22 @@  discard block
 block discarded – undo
306 306
 	 * @param string $rowClass the css class for the new element
307 307
 	 * @param boolean $immediatly
308 308
 	 */
309
-	private function _jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL,$rowClass="_json",$context=NULL,$attr="id",$immediatly=false) {
309
+	private function _jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL, $rowClass="_json", $context=NULL, $attr="id", $immediatly=false) {
310 310
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
311 311
 		$retour=$this->_getAjaxUrl($url, $attr);
312
-		if($context===null){
312
+		if ($context===null) {
313 313
 			$parent="$('".$maskSelector."').parent()";
314
-			$newElm = "$('#'+newId)";
315
-		}else{
314
+			$newElm="$('#'+newId)";
315
+		} else {
316 316
 			$parent=$context;
317
-			$newElm = $context.".find('#'+newId)";
317
+			$newElm=$context.".find('#'+newId)";
318 318
 		}
319 319
 		$appendTo="\t\tnewElm.appendTo(".$parent.");\n";
320 320
 		$retour.="var self = $(this);\n$.{$method}(url,".$params.").done(function( data ) {\n";
321 321
 		$retour.=$parent.".find('._json').remove();";
322 322
 		$retour.="\tdata=$.parseJSON(data);$.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();
323 323
 		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";
324
-		$retour.= $appendTo;
324
+		$retour.=$appendTo;
325 325
 		$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";
326 326
 		$retour.="\t$(document).trigger('jsonReady',[data]);\n";
327 327
 		$retour.="\t".$jsCallback."\n"."});\n";
@@ -340,8 +340,8 @@  discard block
 block discarded – undo
340 340
 	 * @param string $context jquery DOM element, array container.
341 341
 	 * @param boolean $immediatly
342 342
 	 */
343
-	public function jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL,$rowClass="_json",$context=NULL,$immediatly=false) {
344
-		return $this->_jsonArray($maskSelector, $url,$method,$params,$jsCallback,$rowClass,$context,NULL,$immediatly);
343
+	public function jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL, $rowClass="_json", $context=NULL, $immediatly=false) {
344
+		return $this->_jsonArray($maskSelector, $url, $method, $params, $jsCallback, $rowClass, $context, NULL, $immediatly);
345 345
 	}
346 346
 
347 347
 	/**
@@ -354,8 +354,8 @@  discard block
 block discarded – undo
354 354
 	 * @param string $rowClass the css class for the new element
355 355
 	 * @param string $context jquery DOM element, array container.
356 356
 	 */
357
-	public function jsonArrayDeferred($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL,$rowClass="_json",$context=NULL) {
358
-		return $this->jsonArray($maskSelector, $url, $method, $params, $jsCallback,$rowClass,$context,false);
357
+	public function jsonArrayDeferred($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL, $rowClass="_json", $context=NULL) {
358
+		return $this->jsonArray($maskSelector, $url, $method, $params, $jsCallback, $rowClass, $context, false);
359 359
 	}
360 360
 
361 361
 	/**
@@ -365,18 +365,18 @@  discard block
 block discarded – undo
365 365
 	 * @param string $url the request url
366 366
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","rowClass"=>"_json","immediatly"=>true)
367 367
 	 */
368
-	public function jsonArrayOn($event,$element,$maskSelector, $url,$parameters=array()) {
368
+	public function jsonArrayOn($event, $element, $maskSelector, $url, $parameters=array()) {
369 369
 		$preventDefault=true;
370 370
 		$stopPropagation=true;
371 371
 		$jsCallback=null;
372 372
 		$attr="id";
373 373
 		$method="get";
374
-		$context = null;
374
+		$context=null;
375 375
 		$params="{}";
376 376
 		$immediatly=true;
377 377
 		$rowClass="_json";
378 378
 		extract($parameters);
379
-		return $this->_add_event($element, $this->_jsonArray($maskSelector,$url,$method, $params,$jsCallback, $rowClass, $context,$attr), $event, $preventDefault, $stopPropagation,$immediatly);
379
+		return $this->_add_event($element, $this->_jsonArray($maskSelector, $url, $method, $params, $jsCallback, $rowClass, $context, $attr), $event, $preventDefault, $stopPropagation, $immediatly);
380 380
 	}
381 381
 
382 382
 	/**
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 	 */
389 389
 	public function getDeferred($url, $responseElement="", $parameters=[]) {
390 390
 		$parameters["immediatly"]=false;
391
-		return $this->_get($url, $responseElement,$parameters);
391
+		return $this->_get($url, $responseElement, $parameters);
392 392
 	}
393 393
 
394 394
 	/**
@@ -401,8 +401,8 @@  discard block
 block discarded – undo
401 401
 	 * @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)
402 402
 	 */
403 403
 	public function getOn($event, $element, $url, $responseElement="", $parameters=array()) {
404
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]);
405
-		return $this->_add_event($element, $this->getDeferred($url,$responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
404
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]);
405
+		return $this->_add_event($element, $this->getDeferred($url, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
406 406
 	}
407 407
 
408 408
 	/**
@@ -415,8 +415,8 @@  discard block
 block discarded – undo
415 415
 	 * @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)
416 416
 	 */
417 417
 	public function ajaxOn($event, $element, $url, $responseElement="", $parameters=array()) {
418
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true,"method"=>"get"]);
419
-		return $this->_add_event($element, $this->ajaxDeferred($parameters["method"],$url,$responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
418
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true, "method"=>"get"]);
419
+		return $this->_add_event($element, $this->ajaxDeferred($parameters["method"], $url, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
420 420
 	}
421 421
 
422 422
 	/**
@@ -443,9 +443,9 @@  discard block
 block discarded – undo
443 443
 		return $this->getOn("click", $element, $url, $responseElement, $parameters);
444 444
 	}
445 445
 
446
-	private function _post($url, $params="{}",$responseElement="", $parameters=[]) {
446
+	private function _post($url, $params="{}", $responseElement="", $parameters=[]) {
447 447
 		$parameters["params"]=$params;
448
-		return $this->_ajax("POST", $url,$responseElement,$parameters);
448
+		return $this->_ajax("POST", $url, $responseElement, $parameters);
449 449
 	}
450 450
 
451 451
 	/**
@@ -455,8 +455,8 @@  discard block
 block discarded – undo
455 455
 	 * @param string $params JSON parameters
456 456
 	 * @param array $parameters default : array("jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
457 457
 	 */
458
-	public function post($url, $params="{}",$responseElement="", $parameters=[]) {
459
-		return $this->_post($url, $params,$responseElement, $parameters);
458
+	public function post($url, $params="{}", $responseElement="", $parameters=[]) {
459
+		return $this->_post($url, $params, $responseElement, $parameters);
460 460
 	}
461 461
 
462 462
 	/**
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
 	 * @param string $responseElement selector of the HTML element displaying the answer
468 468
 	 * @param array $parameters default : array("jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null)
469 469
 	 */
470
-	public function postDeferred($url, $params="{}",$responseElement="", $parameters=[]) {
470
+	public function postDeferred($url, $params="{}", $responseElement="", $parameters=[]) {
471 471
 		$parameters["immediatly"]=false;
472 472
 		return $this->_post($url, $params, $responseElement, $parameters);
473 473
 	}
@@ -483,8 +483,8 @@  discard block
 block discarded – undo
483 483
 	 * @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)
484 484
 	 */
485 485
 	public function postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) {
486
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]);
487
-		return $this->_add_event($element, $this->postDeferred($url, $params, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
486
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]);
487
+		return $this->_add_event($element, $this->postDeferred($url, $params, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
488 488
 	}
489 489
 
490 490
 	/**
@@ -501,27 +501,27 @@  discard block
 block discarded – undo
501 501
 	}
502 502
 
503 503
 	private function _postForm($url, $form, $responseElement, $parameters=[]) {
504
-		$params="{}";$validation=false;$jsCallback=NULL;$attr="id";$hasLoader=true;$jqueryDone="html";$ajaxTransition=null;$immediatly=false;$jsCondition=NULL;$headers=NULL;$async=true;
504
+		$params="{}"; $validation=false; $jsCallback=NULL; $attr="id"; $hasLoader=true; $jqueryDone="html"; $ajaxTransition=null; $immediatly=false; $jsCondition=NULL; $headers=NULL; $async=true;
505 505
 		\extract($parameters);
506
-		$async=($async)?"true":"false";
506
+		$async=($async) ? "true" : "false";
507 507
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
508 508
 		$retour=$this->_getAjaxUrl($url, $attr);
509 509
 		$retour.="\nvar params=$('#".$form."').serialize();\n";
510
-		if(isset($params)){
510
+		if (isset($params)) {
511 511
 			$retour.="params+='&'+".self::_correctParams($params).";\n";
512 512
 		}
513 513
 		$responseElement=$this->_getResponseElement($responseElement);
514 514
 		$retour.="var self=this;\n";
515
-		if($hasLoader===true){
515
+		if ($hasLoader===true) {
516 516
 			$this->addLoading($retour, $responseElement);
517 517
 		}
518
-		$ajaxParameters=["url"=>"url","method"=>"'POST'","data"=>"params","async"=>$async];
519
-		if(isset($headers)){
518
+		$ajaxParameters=["url"=>"url", "method"=>"'POST'", "data"=>"params", "async"=>$async];
519
+		if (isset($headers)) {
520 520
 			$ajaxParameters["headers"]=$headers;
521 521
 		}
522 522
 		$this->createAjaxParameters($ajaxParameters, $parameters);
523 523
 		$retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data ) {\n";
524
-		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n";
524
+		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback)."});\n";
525 525
 
526 526
 		if ($validation) {
527 527
 			$retour="$('#".$form."').validate({submitHandler: function(form) {
@@ -571,8 +571,8 @@  discard block
 block discarded – undo
571 571
 	 * @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)
572 572
 	 */
573 573
 	public function postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) {
574
-		$this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]);
575
-		return $this->_add_event($element, $this->postFormDeferred($url, $form, $responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]);
574
+		$this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]);
575
+		return $this->_add_event($element, $this->postFormDeferred($url, $form, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]);
576 576
 	}
577 577
 
578 578
 	/**
Please login to merge, or discard this patch.
Braces   +33 added lines, -24 removed lines patch added patch discarded remove patch
@@ -50,8 +50,9 @@  discard block
 block discarded – undo
50 50
 		$retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data, textStatus, jqXHR ) {\n";
51 51
 		$retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n";
52 52
 		$retour=$this->_addJsCondition($jsCondition,$retour);
53
-		if ($immediatly)
54
-			$this->jquery_code_for_compile[]=$retour;
53
+		if ($immediatly) {
54
+					$this->jquery_code_for_compile[]=$retour;
55
+		}
55 56
 		return $retour;
56 57
 	}
57 58
 
@@ -87,12 +88,13 @@  discard block
 block discarded – undo
87 88
 		if(JString::isNotNull($attr)){
88 89
 			if ($attr==="value"){
89 90
 				$retour.="url=url+'".$slash."'+$(this).val();\n";
90
-			}elseif ($attr==="html"){
91
+			} elseif ($attr==="html"){
91 92
 				$retour.="url=url+'".$slash."'+$(this).html();\n";
92
-			}elseif(\substr($attr, 0,3)==="js:"){
93
+			} elseif(\substr($attr, 0,3)==="js:"){
93 94
 				$retour.="url=url+'".$slash."'+".\substr($attr, 3).";\n";
94
-			}elseif($attr!==null && $attr!=="")
95
-				$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
95
+			} elseif($attr!==null && $attr!=="") {
96
+							$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
97
+			}
96 98
 		}
97 99
 		return $retour;
98 100
 	}
@@ -102,13 +104,14 @@  discard block
 block discarded – undo
102 104
 		if (JString::isNotNull($responseElement)) {
103 105
 			if(isset($ajaxTransition)){
104 106
 				$call=$this->setAjaxDataCall($ajaxTransition);
105
-			}elseif(isset($this->ajaxTransition)){
107
+			} elseif(isset($this->ajaxTransition)){
106 108
 				$call=$this->ajaxTransition;
107 109
 			}
108
-			if(\is_callable($call))
109
-				$retour="\t".$call($responseElement,$jqueryDone).";\n";
110
-			else
111
-				$retour="\t{$responseElement}.{$jqueryDone}( data );\n";
110
+			if(\is_callable($call)) {
111
+							$retour="\t".$call($responseElement,$jqueryDone).";\n";
112
+			} else {
113
+							$retour="\t{$responseElement}.{$jqueryDone}( data );\n";
114
+			}
112 115
 		}
113 116
 		$retour.="\t".$jsCallback."\n";
114 117
 		return $retour;
@@ -123,8 +126,9 @@  discard block
 block discarded – undo
123 126
 	}
124 127
 
125 128
 	protected function _correctAjaxUrl($url) {
126
-		if ($url!=="/" && JString::endsWith($url, "/")===true)
127
-			$url=substr($url, 0, strlen($url)-1);
129
+		if ($url!=="/" && JString::endsWith($url, "/")===true) {
130
+					$url=substr($url, 0, strlen($url)-1);
131
+		}
128 132
 			if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) {
129 133
 				$url=$this->getUrl($url);
130 134
 			}
@@ -144,8 +148,9 @@  discard block
 block discarded – undo
144 148
 	public static function _implodeParams($parameters){
145 149
 		$allParameters=[];
146 150
 		foreach ($parameters as $params){
147
-			if(isset($params))
148
-				$allParameters[]=self::_correctParams($params);
151
+			if(isset($params)) {
152
+							$allParameters[]=self::_correctParams($params);
153
+			}
149 154
 		}
150 155
 		return \implode("+'&'+", $allParameters);
151 156
 	}
@@ -174,8 +179,9 @@  discard block
 block discarded – undo
174 179
 
175 180
 	protected function setDefaultParameters(&$parameters,$default){
176 181
 		foreach ($default as $k=>$v){
177
-			if(!isset($parameters[$k]))
178
-				$parameters[$k]=$v;
182
+			if(!isset($parameters[$k])) {
183
+							$parameters[$k]=$v;
184
+			}
179 185
 		}
180 186
 	}
181 187
 
@@ -246,8 +252,9 @@  discard block
 block discarded – undo
246 252
 				$retour.="\t".$jsCallback."\n".
247 253
 						"\t$(document).trigger('jsonReady',[data]);\n".
248 254
 						"});\n";
249
-				if ($immediatly)
250
-					$this->jquery_code_for_compile[]=$retour;
255
+				if ($immediatly) {
256
+									$this->jquery_code_for_compile[]=$retour;
257
+				}
251 258
 		return $retour;
252 259
 	}
253 260
 
@@ -312,7 +319,7 @@  discard block
 block discarded – undo
312 319
 		if($context===null){
313 320
 			$parent="$('".$maskSelector."').parent()";
314 321
 			$newElm = "$('#'+newId)";
315
-		}else{
322
+		} else{
316 323
 			$parent=$context;
317 324
 			$newElm = $context.".find('#'+newId)";
318 325
 		}
@@ -325,8 +332,9 @@  discard block
 block discarded – undo
325 332
 		$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";
326 333
 		$retour.="\t$(document).trigger('jsonReady',[data]);\n";
327 334
 		$retour.="\t".$jsCallback."\n"."});\n";
328
-		if ($immediatly)
329
-			$this->jquery_code_for_compile[]=$retour;
335
+		if ($immediatly) {
336
+					$this->jquery_code_for_compile[]=$retour;
337
+		}
330 338
 		return $retour;
331 339
 	}
332 340
 
@@ -530,8 +538,9 @@  discard block
 block discarded – undo
530 538
 			$retour.="$('#".$form."').submit();\n";
531 539
 		}
532 540
 		$retour=$this->_addJsCondition($jsCondition, $retour);
533
-		if ($immediatly)
534
-			$this->jquery_code_for_compile[]=$retour;
541
+		if ($immediatly) {
542
+					$this->jquery_code_for_compile[]=$retour;
543
+		}
535 544
 		return $retour;
536 545
 	}
537 546
 
Please login to merge, or discard this patch.
Ajax/common/traits/JsUtilsEventsTrait.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
 trait JsUtilsEventsTrait {
12 12
 
13 13
 
14
-	protected $jquery_events=array (
15
-			"bind","blur","change","click","dblclick","delegate","die","error","focus","focusin","focusout","hover","keydown","keypress","keyup","live","load","mousedown","mousseenter","mouseleave","mousemove","mouseout","mouseover","mouseup","off","on","one","ready","resize","scroll","select","submit","toggle","trigger","triggerHandler","undind","undelegate","unload"
14
+	protected $jquery_events=array(
15
+			"bind", "blur", "change", "click", "dblclick", "delegate", "die", "error", "focus", "focusin", "focusout", "hover", "keydown", "keypress", "keyup", "live", "load", "mousedown", "mousseenter", "mouseleave", "mousemove", "mouseout", "mouseover", "mouseup", "off", "on", "one", "ready", "resize", "scroll", "select", "submit", "toggle", "trigger", "triggerHandler", "undind", "undelegate", "unload"
16 16
 	);
17 17
 
18
-	abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true);
18
+	abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true);
19 19
 
20 20
 	/**
21 21
 	 * Outputs a javascript library blur event
@@ -37,8 +37,8 @@  discard block
 block discarded – undo
37 37
 	 * @param boolean $stopPropagation
38 38
 	 * @return string
39 39
 	 */
40
-	public function change($element='this', $js='',$preventDefault=false,$stopPropagation=false) {
41
-		return $this->_add_event($element, $js, 'change',$preventDefault,$stopPropagation);
40
+	public function change($element='this', $js='', $preventDefault=false, $stopPropagation=false) {
41
+		return $this->_add_event($element, $js, 'change', $preventDefault, $stopPropagation);
42 42
 	}
43 43
 
44 44
 	/**
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
 	 * @param boolean $stopPropagation
52 52
 	 * @return string
53 53
 	 */
54
-	public function click($element='this', $js='', $ret_false=TRUE,$preventDefault=false,$stopPropagation=false) {
54
+	public function click($element='this', $js='', $ret_false=TRUE, $preventDefault=false, $stopPropagation=false) {
55 55
 		if (!is_array($js)) {
56
-			$js=array (
56
+			$js=array(
57 57
 					$js
58 58
 			);
59 59
 		}
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 			$js[]="return false;";
63 63
 		}
64 64
 
65
-		return $this->_add_event($element, $js, 'click',$preventDefault,$stopPropagation);
65
+		return $this->_add_event($element, $js, 'click', $preventDefault, $stopPropagation);
66 66
 	}
67 67
 
68 68
 	/**
Please login to merge, or discard this patch.