Completed
Push — master ( 93b0d7...a78505 )
by Jean-Christophe
02:42
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 1 patch
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.
Ajax/semantic/html/modules/HtmlDropdown.php 1 patch
Spacing   +99 added lines, -99 removed lines patch added patch discarded remove patch
@@ -13,29 +13,29 @@  discard block
 block discarded – undo
13 13
 use Ajax\semantic\html\collections\form\traits\FieldTrait;
14 14
 
15 15
 class HtmlDropdown extends HtmlSemDoubleElement {
16
-	use FieldTrait,LabeledIconTrait {
16
+	use FieldTrait, LabeledIconTrait {
17 17
 		addIcon as addIconP;
18 18
 	}
19 19
 	protected $mClass="menu";
20 20
 	protected $mTagName="div";
21
-	protected $items=array ();
22
-	protected $_params=array("action"=>"nothing","on"=>"hover","showOnFocus"=>false);
21
+	protected $items=array();
22
+	protected $_params=array("action"=>"nothing", "on"=>"hover", "showOnFocus"=>false);
23 23
 	protected $input;
24 24
 	protected $value;
25 25
 	protected $_associative;
26 26
 	protected $_multiple;
27 27
 
28
-	public function __construct($identifier, $value="", $items=array(),$associative=true) {
28
+	public function __construct($identifier, $value="", $items=array(), $associative=true) {
29 29
 		parent::__construct($identifier, "div");
30 30
 		$this->_template=include dirname(__FILE__).'/../templates/tplDropdown.php';
31 31
 		$this->setProperty("class", "ui dropdown");
32 32
 		$this->_multiple=false;
33 33
 		$content=[];
34
-		if(isset($value)){
35
-			if($value instanceof HtmlSemDoubleElement){
34
+		if (isset($value)) {
35
+			if ($value instanceof HtmlSemDoubleElement) {
36 36
 				$text=$value;
37
-			}else{
38
-				$text=new HtmlSemDoubleElement("text-".$this->identifier,"div");
37
+			} else {
38
+				$text=new HtmlSemDoubleElement("text-".$this->identifier, "div");
39 39
 				$text->setClass("text");
40 40
 				$this->setValue($value);
41 41
 			}
@@ -48,29 +48,29 @@  discard block
 block discarded – undo
48 48
 		$this->addItems($items);
49 49
 	}
50 50
 
51
-	public function getField(){
51
+	public function getField() {
52 52
 		return $this->input;
53 53
 	}
54 54
 
55
-	public function getDataField(){
55
+	public function getDataField() {
56 56
 		return $this->input;
57 57
 	}
58 58
 
59
-	public function addItem($item,$value=NULL,$image=NULL,$description=NULL){
60
-		$itemO=$this->beforeAddItem($item,$value,$image,$description);
59
+	public function addItem($item, $value=NULL, $image=NULL, $description=NULL) {
60
+		$itemO=$this->beforeAddItem($item, $value, $image, $description);
61 61
 		$this->items[]=$itemO;
62 62
 		return $itemO;
63 63
 	}
64 64
 
65
-	public function addIcon($icon,$before=true,$labeled=false){
65
+	public function addIcon($icon, $before=true, $labeled=false) {
66 66
 		$this->removeArrow();
67
-		$this->addIconP($icon,$before,$labeled);
67
+		$this->addIconP($icon, $before, $labeled);
68 68
 		return $this->getElementById("text-".$this->identifier, $this->content)->setWrapAfter("");
69 69
 	}
70 70
 
71
-	public function addIcons($icons){
71
+	public function addIcons($icons) {
72 72
 		$count=$this->count();
73
-		for ($i=0;$i<\sizeof($icons) && $i<$count;$i++){
73
+		for ($i=0; $i<\sizeof($icons) && $i<$count; $i++) {
74 74
 			$this->getItem($i)->addIcon($icons[$i]);
75 75
 		}
76 76
 	}
@@ -81,33 +81,33 @@  discard block
 block discarded – undo
81 81
 	 * @param number $position
82 82
 	 * @return \Ajax\semantic\html\content\HtmlDropdownItem|unknown
83 83
 	 */
84
-	public function insertItem($item,$position=0){
84
+	public function insertItem($item, $position=0) {
85 85
 		$itemO=$this->beforeAddItem($item);
86
-		 $start = array_slice($this->items, 0, $position);
87
-		 $end = array_slice($this->items, $position);
88
-		 $start[] = $item;
86
+		 $start=array_slice($this->items, 0, $position);
87
+		 $end=array_slice($this->items, $position);
88
+		 $start[]=$item;
89 89
 		 $this->items=array_merge($start, $end);
90 90
 		 return $itemO;
91 91
 	}
92 92
 
93
-	protected function removeArrow(){
94
-		if(\sizeof($this->content)>1){
93
+	protected function removeArrow() {
94
+		if (\sizeof($this->content)>1) {
95 95
 			unset($this->content["arrow"]);
96 96
 			$this->content=\array_values($this->content);
97 97
 		}
98 98
 	}
99 99
 
100
-	protected function beforeAddItem($item,$value=NULL,$image=NULL,$description=NULL){
100
+	protected function beforeAddItem($item, $value=NULL, $image=NULL, $description=NULL) {
101 101
 		$itemO=$item;
102
-		if(\is_array($item)){
102
+		if (\is_array($item)) {
103 103
 			$description=JArray::getValue($item, "description", 3);
104 104
 			$value=JArray::getValue($item, "value", 1);
105 105
 			$image=JArray::getValue($item, "image", 2);
106 106
 			$item=JArray::getValue($item, "item", 0);
107 107
 		}
108
-		if(!$item instanceof HtmlDropdownItem){
109
-			$itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items),$item,$value,$image,$description);
110
-		}elseif($itemO instanceof HtmlDropdownItem){
108
+		if (!$item instanceof HtmlDropdownItem) {
109
+			$itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items), $item, $value, $image, $description);
110
+		}elseif ($itemO instanceof HtmlDropdownItem) {
111 111
 			$this->addToProperty("class", "vertical");
112 112
 		}
113 113
 		return $itemO;
@@ -120,11 +120,11 @@  discard block
 block discarded – undo
120 120
 		$this->addItem($function($object));
121 121
 	}
122 122
 
123
-	public function addInput($name){
124
-		if(!isset($name))
123
+	public function addInput($name) {
124
+		if (!isset($name))
125 125
 			$name="input-".$this->identifier;
126 126
 		$this->setAction("activate");
127
-		$this->input=new HtmlInput($name,"hidden");
127
+		$this->input=new HtmlInput($name, "hidden");
128 128
 	}
129 129
 
130 130
 	/**
@@ -133,15 +133,15 @@  discard block
 block discarded – undo
133 133
 	 * @param string $icon
134 134
 	 * @return \Ajax\semantic\html\content\HtmlDropdownItem
135 135
 	 */
136
-	public function addSearchInputItem($placeHolder=NULL,$icon=NULL){
137
-		return $this->addItem(HtmlDropdownItem::searchInput($placeHolder,$icon));
136
+	public function addSearchInputItem($placeHolder=NULL, $icon=NULL) {
137
+		return $this->addItem(HtmlDropdownItem::searchInput($placeHolder, $icon));
138 138
 	}
139 139
 
140 140
 	/**
141 141
 	 * Adds a divider item
142 142
 	 * @return \Ajax\semantic\html\content\HtmlDropdownItem
143 143
 	 */
144
-	public function addDividerItem(){
144
+	public function addDividerItem() {
145 145
 		return $this->addItem(HtmlDropdownItem::divider());
146 146
 	}
147 147
 
@@ -151,8 +151,8 @@  discard block
 block discarded – undo
151 151
 	 * @param string $icon
152 152
 	 * @return \Ajax\semantic\html\content\HtmlDropdownItem|unknown
153 153
 	 */
154
-	public function addHeaderItem($caption=NULL,$icon=NULL){
155
-		return $this->addItem(HtmlDropdownItem::header($caption,$icon));
154
+	public function addHeaderItem($caption=NULL, $icon=NULL) {
155
+		return $this->addItem(HtmlDropdownItem::header($caption, $icon));
156 156
 	}
157 157
 
158 158
 	/**
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	 * @param string $color
162 162
 	 * @return \Ajax\semantic\html\content\HtmlDropdownItem|unknown
163 163
 	 */
164
-	public function addCircularLabelItem($caption,$color){
164
+	public function addCircularLabelItem($caption, $color) {
165 165
 		return $this->addItem(HtmlDropdownItem::circular($caption, $color));
166 166
 	}
167 167
 
@@ -170,17 +170,17 @@  discard block
 block discarded – undo
170 170
 	 * @param string $image
171 171
 	 * @return \Ajax\semantic\html\content\HtmlDropdownItem
172 172
 	 */
173
-	public function addMiniAvatarImageItem($caption,$image){
173
+	public function addMiniAvatarImageItem($caption, $image) {
174 174
 		return $this->addItem(HtmlDropdownItem::avatar($caption, $image));
175 175
 	}
176 176
 
177
-	public function addItems($items){
178
-		if(\is_array($items) && $this->_associative){
179
-			foreach ($items as $k=>$v){
177
+	public function addItems($items) {
178
+		if (\is_array($items) && $this->_associative) {
179
+			foreach ($items as $k=>$v) {
180 180
 				$this->addItem($v)->setData($k);
181 181
 			}
182
-		}else{
183
-			foreach ($items as $item){
182
+		} else {
183
+			foreach ($items as $item) {
184 184
 				$this->addItem($item);
185 185
 			}
186 186
 		}
@@ -192,98 +192,98 @@  discard block
 block discarded – undo
192 192
 	 * @param array $values
193 193
 	 * @return HtmlCollection
194 194
 	 */
195
-	public function setPropertyValues($property,$values){
195
+	public function setPropertyValues($property, $values) {
196 196
 		$i=0;
197
-		if(\is_array($values)===false){
198
-			$values=\array_fill(0, $this->count(),$values);
197
+		if (\is_array($values)===false) {
198
+			$values=\array_fill(0, $this->count(), $values);
199 199
 		}
200
-		foreach ($values as $value){
200
+		foreach ($values as $value) {
201 201
 			$c=$this->items[$i++];
202
-			if(isset($c)){
203
-				$c->setProperty($property,$value);
202
+			if (isset($c)) {
203
+				$c->setProperty($property, $value);
204 204
 			}
205
-			else{
205
+			else {
206 206
 				return $this;
207 207
 			}
208 208
 		}
209 209
 		return $this;
210 210
 	}
211 211
 
212
-	public function each($callBack){
213
-		foreach ($this->items as $index=>$value){
214
-			$callBack($index,$value);
212
+	public function each($callBack) {
213
+		foreach ($this->items as $index=>$value) {
214
+			$callBack($index, $value);
215 215
 		}
216 216
 		return $this;
217 217
 	}
218 218
 
219
-	public function getItem($index){
219
+	public function getItem($index) {
220 220
 		return $this->items[$index];
221 221
 	}
222 222
 
223 223
 	/**
224 224
 	 * @return int
225 225
 	 */
226
-	public function count(){
226
+	public function count() {
227 227
 		return \sizeof($this->items);
228 228
 	}
229 229
 	/**
230 230
 	 * @param boolean $dropdown
231 231
 	 */
232
-	public function asDropdown($dropdown){
233
-		if($dropdown===false){
232
+	public function asDropdown($dropdown) {
233
+		if ($dropdown===false) {
234 234
 			$this->_template=include dirname(__FILE__).'/../templates/tplDropdownMenu.php';
235 235
 			$dropdown="menu";
236
-		}else{
236
+		} else {
237 237
 			$dropdown="dropdown";
238 238
 			$this->mClass="menu";
239 239
 		}
240
-		return $this->addToPropertyCtrl("class", $dropdown,array("menu","dropdown"));
240
+		return $this->addToPropertyCtrl("class", $dropdown, array("menu", "dropdown"));
241 241
 	}
242 242
 
243
-	public function setVertical(){
244
-		return $this->addToPropertyCtrl("class", "vertical",array("vertical"));
243
+	public function setVertical() {
244
+		return $this->addToPropertyCtrl("class", "vertical", array("vertical"));
245 245
 	}
246 246
 
247
-	public function setInline(){
248
-		return $this->addToPropertyCtrl("class", "inline",["inline"]);
247
+	public function setInline() {
248
+		return $this->addToPropertyCtrl("class", "inline", ["inline"]);
249 249
 	}
250 250
 
251
-	public function setSimple(){
252
-		return $this->addToPropertyCtrl("class", "simple",array("simple"));
251
+	public function setSimple() {
252
+		return $this->addToPropertyCtrl("class", "simple", array("simple"));
253 253
 	}
254 254
 
255
-	public function asButton($floating=false){
255
+	public function asButton($floating=false) {
256 256
 		$this->removeArrow();
257
-		if($floating)
257
+		if ($floating)
258 258
 			$this->addToProperty("class", "floating");
259 259
 		$this->removePropertyValue("class", "selection");
260 260
 		return $this->addToProperty("class", "button");
261 261
 	}
262 262
 
263
-	public function asSelect($name=NULL,$multiple=false,$selection=true){
263
+	public function asSelect($name=NULL, $multiple=false, $selection=true) {
264 264
 		$this->_multiple=$multiple;
265
-		if(isset($name))
265
+		if (isset($name))
266 266
 			$this->addInput($name);
267
-		if($multiple){
267
+		if ($multiple) {
268 268
 			$this->addToProperty("class", "multiple");
269 269
 		}
270
-		if ($selection){
271
-			if($this->propertyContains("class", "button")===false)
272
-				$this->addToPropertyCtrl("class", "selection",array("selection"));
270
+		if ($selection) {
271
+			if ($this->propertyContains("class", "button")===false)
272
+				$this->addToPropertyCtrl("class", "selection", array("selection"));
273 273
 		}
274 274
 		return $this;
275 275
 	}
276 276
 
277
-	public function asSearch($name=NULL,$multiple=false,$selection=true){
278
-		$this->asSelect($name,$multiple,$selection);
277
+	public function asSearch($name=NULL, $multiple=false, $selection=true) {
278
+		$this->asSelect($name, $multiple, $selection);
279 279
 		return $this->addToProperty("class", "search");
280 280
 	}
281 281
 
282
-	public function setSelect($name=NULL,$multiple=false){
283
-		if(!isset($name))
282
+	public function setSelect($name=NULL, $multiple=false) {
283
+		if (!isset($name))
284 284
 			$name="select-".$this->identifier;
285 285
 		$this->input=null;
286
-		if($multiple){
286
+		if ($multiple) {
287 287
 			$this->setProperty("multiple", true);
288 288
 			$this->addToProperty("class", "multiple");
289 289
 		}
@@ -291,37 +291,37 @@  discard block
 block discarded – undo
291 291
 		$this->tagName="select";
292 292
 		$this->setProperty("name", $name);
293 293
 		$this->content=null;
294
-		foreach ($this->items as $item){
294
+		foreach ($this->items as $item) {
295 295
 			$item->asOption();
296 296
 		}
297 297
 		return $this;
298 298
 	}
299 299
 
300
-	public function asSubmenu($pointing=NULL){
300
+	public function asSubmenu($pointing=NULL) {
301 301
 		$this->setClass("ui dropdown link item");
302
-		if(isset($pointing)){
302
+		if (isset($pointing)) {
303 303
 			$this->setPointing($pointing);
304 304
 		}
305 305
 		return $this;
306 306
 	}
307 307
 
308
-	public function setPointing($value=Direction::NONE){
309
-		return $this->addToPropertyCtrl("class", $value." pointing",Direction::getConstantValues("pointing"));
308
+	public function setPointing($value=Direction::NONE) {
309
+		return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing"));
310 310
 	}
311 311
 
312
-	public function setValue($value){
312
+	public function setValue($value) {
313 313
 		$this->value=$value;
314 314
 		return $this;
315 315
 	}
316
-	private function applyValue(){
316
+	private function applyValue() {
317 317
 		$value=$this->value;
318
-		if(isset($this->input) && isset($value)){
318
+		if (isset($this->input) && isset($value)) {
319 319
 			$this->input->setProperty("value", $value);
320
-		}else{
320
+		} else {
321 321
 			$this->setProperty("value", $value);
322 322
 		}
323 323
 			$textElement=$this->getElementById("text-".$this->identifier, $this->content);
324
-			if(isset($textElement) && !$this->_multiple)
324
+			if (isset($textElement) && !$this->_multiple)
325 325
 				$textElement->setContent($value);
326 326
 		return $this;
327 327
 	}
@@ -331,9 +331,9 @@  discard block
 block discarded – undo
331 331
 	 * @see BaseHtml::run()
332 332
 	 */
333 333
 	public function run(JsUtils $js) {
334
-		if($this->propertyContains("class", "simple")===false){
335
-			if(isset($this->_bsComponent)===false){
336
-				$this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier,$this->_params);
334
+		if ($this->propertyContains("class", "simple")===false) {
335
+			if (isset($this->_bsComponent)===false) {
336
+				$this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier, $this->_params);
337 337
 				$this->_bsComponent->setItemSelector(".item");
338 338
 			}
339 339
 			$this->addEventsOnRun($js);
@@ -341,44 +341,44 @@  discard block
 block discarded – undo
341 341
 		}
342 342
 	}
343 343
 
344
-	public function setCompact(){
344
+	public function setCompact() {
345 345
 		return $this->addToPropertyCtrl("class", "compact", array("compact"));
346 346
 	}
347 347
 
348
-	public function setAction($action){
348
+	public function setAction($action) {
349 349
 		$this->_params["action"]=$action;
350 350
 	}
351 351
 
352
-	public function setOn($on){
352
+	public function setOn($on) {
353 353
 		$this->_params["on"]=$on;
354 354
 	}
355 355
 
356
-	public function setShowOnFocus($value){
356
+	public function setShowOnFocus($value) {
357 357
 		$this->_params["showOnFocus"]=$value;
358 358
 	}
359 359
 
360
-	public function setFullTextSearch($value){
360
+	public function setFullTextSearch($value) {
361 361
 		$this->_params["fullTextSearch"]=$value;
362 362
 	}
363 363
 
364 364
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
365 365
 		$this->applyValue();
366
-		return parent::compile($js,$view);
366
+		return parent::compile($js, $view);
367 367
 	}
368 368
 
369 369
 	public function getInput() {
370 370
 		return $this->input;
371 371
 	}
372 372
 	public function addAction($action, $direction=Direction::RIGHT, $icon=NULL, $labeled=false) {
373
-		return $this->_addAction($this, $action,$direction,$icon,$labeled);
373
+		return $this->_addAction($this, $action, $direction, $icon, $labeled);
374 374
 	}
375 375
 
376
-	public function setIcon($icon="dropdown"){
376
+	public function setIcon($icon="dropdown") {
377 377
 		$this->content["arrow"]=new HtmlIcon($this->identifier."-icon", $icon);
378 378
 		return $this;
379 379
 	}
380 380
 
381
-	public function jsAddItem($caption){
381
+	public function jsAddItem($caption) {
382 382
 		$js="var first=$('#{$this->identifier} .item').first();if(first!=undefined){var new =first.clone();first.parent().append(new);first.html('{$caption}};')";
383 383
 		return $js;
384 384
 	}
Please login to merge, or discard this patch.
Ajax/semantic/components/validation/FieldValidation.php 1 patch
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.
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/html/HtmlCollection.php 1 patch
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -15,44 +15,44 @@  discard block
 block discarded – undo
15 15
  */
16 16
 abstract class HtmlCollection extends HtmlDoubleElement {
17 17
 
18
-	public function __construct($identifier,$tagName="div"){
19
-		parent::__construct($identifier,$tagName);
18
+	public function __construct($identifier, $tagName="div") {
19
+		parent::__construct($identifier, $tagName);
20 20
 		$this->content=array();
21 21
 	}
22 22
 
23
-	public function addItems($items){
24
-		if(JArray::isAssociative($items)){
25
-			foreach ($items as $k=>$v){
26
-				$this->addItem([$k,$v]);
23
+	public function addItems($items) {
24
+		if (JArray::isAssociative($items)) {
25
+			foreach ($items as $k=>$v) {
26
+				$this->addItem([$k, $v]);
27 27
 			}
28
-		}else{
29
-			foreach ($items as $item){
28
+		} else {
29
+			foreach ($items as $item) {
30 30
 				$this->addItem($item);
31 31
 			}
32 32
 		}
33 33
 		return $this;
34 34
 	}
35 35
 
36
-	public function setItems($items){
36
+	public function setItems($items) {
37 37
 		$this->content=$items;
38 38
 		return $this;
39 39
 	}
40 40
 
41
-	public function getItems(){
41
+	public function getItems() {
42 42
 		return $this->content;
43 43
 	}
44 44
 
45
-	protected function getItemToAdd($item){
45
+	protected function getItemToAdd($item) {
46 46
 		$itemO=$item;
47
-		if($this->createCondition($item)===true){
47
+		if ($this->createCondition($item)===true) {
48 48
 			$itemO=$this->createItem($item);
49 49
 		}
50 50
 		return $itemO;
51 51
 	}
52 52
 
53
-	protected function setItemIdentifier($item,$classname,$index){
54
-		if($item instanceof BaseWidget){
55
-			if(JString::isNull($item->getIdentifier())){
53
+	protected function setItemIdentifier($item, $classname, $index) {
54
+		if ($item instanceof BaseWidget) {
55
+			if (JString::isNull($item->getIdentifier())) {
56 56
 				$item->setIdentifier($classname."-".$this->identifier."-".$index);
57 57
 			}
58 58
 		}
@@ -63,15 +63,15 @@  discard block
 block discarded – undo
63 63
 	 * @param HtmlDoubleElement|string|array $item
64 64
 	 * @return \Ajax\common\html\HtmlDoubleElement
65 65
 	 */
66
-	public function addItem($item){
66
+	public function addItem($item) {
67 67
 		$itemO=$this->getItemToAdd($item);
68 68
 		$this->addContent($itemO);
69 69
 		return $itemO;
70 70
 	}
71 71
 
72
-	public function insertItem($item,$position=0){
72
+	public function insertItem($item, $position=0) {
73 73
 		$itemO=$this->getItemToAdd($item);
74
-		\array_splice( $this->content, $position, 0, array($itemO));
74
+		\array_splice($this->content, $position, 0, array($itemO));
75 75
 		return $itemO;
76 76
 	}
77 77
 
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
 		return $this;
95 95
 	}
96 96
 
97
-	public function removeItem($index){
97
+	public function removeItem($index) {
98 98
 		return array_splice($this->content, $index, 1);
99 99
 	}
100 100
 
101
-	public function count(){
101
+	public function count() {
102 102
 		return \sizeof($this->content);
103 103
 	}
104 104
 
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
 		return $this->addItem($function($object));
110 110
 	}
111 111
 
112
-	public function apply($callBack){
113
-		foreach ($this->content as $item){
112
+	public function apply($callBack) {
113
+		foreach ($this->content as $item) {
114 114
 			$callBack($item);
115 115
 		}
116 116
 		return $this;
@@ -130,23 +130,23 @@  discard block
 block discarded – undo
130 130
 	 */
131 131
 	abstract protected function createItem($value);
132 132
 
133
-	protected function createCondition($value){
133
+	protected function createCondition($value) {
134 134
 		return \is_object($value)===false;
135 135
 	}
136 136
 
137
-	protected function contentAs($tagName){
138
-		foreach ($this->content as $item){
137
+	protected function contentAs($tagName) {
138
+		foreach ($this->content as $item) {
139 139
 			$item->setTagName($tagName);
140 140
 		}
141 141
 		return $this;
142 142
 	}
143 143
 
144
-	public function setProperties($properties){
144
+	public function setProperties($properties) {
145 145
 		$i=0;
146
-		foreach ($properties as $k=>$v){
146
+		foreach ($properties as $k=>$v) {
147 147
 			$c=$this->content[$i++];
148
-			if(isset($c))
149
-				$c->setProperty($k,$v);
148
+			if (isset($c))
149
+				$c->setProperty($k, $v);
150 150
 			else
151 151
 				return $this;
152 152
 		}
@@ -159,17 +159,17 @@  discard block
 block discarded – undo
159 159
 	 * @param array $values
160 160
 	 * @return HtmlCollection
161 161
 	 */
162
-	public function setPropertyValues($property,$values){
162
+	public function setPropertyValues($property, $values) {
163 163
 		$i=0;
164
-		if(\is_array($values)===false){
165
-			$values=\array_fill(0, $this->count(),$values);
164
+		if (\is_array($values)===false) {
165
+			$values=\array_fill(0, $this->count(), $values);
166 166
 		}
167
-		foreach ($values as $value){
167
+		foreach ($values as $value) {
168 168
 			$c=$this->content[$i++];
169
-			if(isset($c)){
170
-				$c->setProperty($property,$value);
169
+			if (isset($c)) {
170
+				$c->setProperty($property, $value);
171 171
 			}
172
-			else{
172
+			else {
173 173
 				return $this;
174 174
 			}
175 175
 		}
@@ -179,13 +179,13 @@  discard block
 block discarded – undo
179 179
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
180 180
 		$index=0;
181 181
 		$classname=\strtolower(JReflection::shortClassName($this));
182
-		foreach ($this->content as $item){
183
-			$this->setItemIdentifier($item,$classname,$index++);
182
+		foreach ($this->content as $item) {
183
+			$this->setItemIdentifier($item, $classname, $index++);
184 184
 		}
185
-		return parent::compile($js,$view);
185
+		return parent::compile($js, $view);
186 186
 	}
187 187
 
188
-	public function getItemById($identifier){
188
+	public function getItemById($identifier) {
189 189
 		return $this->getElementById($identifier, $this->content);
190 190
 	}
191 191
 }
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.
Ajax/semantic/components/validation/Rule.php 1 patch
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @version 1.001
9 9
  * Generates a JSON Rule for the validation of a field
10 10
  */
11
-class Rule implements \JsonSerializable{
11
+class Rule implements \JsonSerializable {
12 12
 	/**
13 13
 	 * @var string
14 14
 	 */
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 	 */
24 24
 	private $value;
25 25
 
26
-	public function __construct($type,$prompt=NULL,$value=NULL){
26
+	public function __construct($type, $prompt=NULL, $value=NULL) {
27 27
 		$this->type=$type;
28 28
 		$this->prompt=$prompt;
29 29
 		$this->value=$value;
@@ -57,10 +57,10 @@  discard block
 block discarded – undo
57 57
 	}
58 58
 
59 59
 	public function jsonSerialize() {
60
-		$result= ["type"=>$this->type];
61
-		if(isset($this->prompt))
60
+		$result=["type"=>$this->type];
61
+		if (isset($this->prompt))
62 62
 			$result["prompt"]=$this->prompt;
63
-		if(isset($this->value))
63
+		if (isset($this->value))
64 64
 			$result["value"]=$this->value;
65 65
 		return $result;
66 66
 	}
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
 	 * @param string $prompt
72 72
 	 * @return \Ajax\semantic\components\validation\Rule
73 73
 	 */
74
-	public static function match($name,$prompt=NULL){
75
-		return new Rule("match[".$name."]",$prompt);
74
+	public static function match($name, $prompt=NULL) {
75
+		return new Rule("match[".$name."]", $prompt);
76 76
 	}
77 77
 
78 78
 	/**
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
 	 * @param string $prompt
82 82
 	 * @return \Ajax\semantic\components\validation\Rule
83 83
 	 */
84
-	public static function different($name,$prompt=NULL){
85
-		return new Rule("different[".$name."]",$prompt);
84
+	public static function different($name, $prompt=NULL) {
85
+		return new Rule("different[".$name."]", $prompt);
86 86
 	}
87 87
 
88 88
 	/**
@@ -92,82 +92,82 @@  discard block
 block discarded – undo
92 92
 	 * @param string $prompt
93 93
 	 * @return \Ajax\semantic\components\validation\Rule
94 94
 	 */
95
-	public static function integer($min=NULL,$max=NULL,$prompt=NULL){
96
-		if(\is_int($min) && \is_int($max))
97
-			return new Rule("integer[{$min}..{$max}]",$prompt);
98
-		return new Rule("integer",$prompt);
95
+	public static function integer($min=NULL, $max=NULL, $prompt=NULL) {
96
+		if (\is_int($min) && \is_int($max))
97
+			return new Rule("integer[{$min}..{$max}]", $prompt);
98
+		return new Rule("integer", $prompt);
99 99
 	}
100 100
 
101
-	public static function decimal($prompt=NULL){
102
-		return new Rule("decimal",$prompt);
101
+	public static function decimal($prompt=NULL) {
102
+		return new Rule("decimal", $prompt);
103 103
 	}
104 104
 
105
-	public static function number($prompt=NULL){
106
-		return new Rule("number",$prompt);
105
+	public static function number($prompt=NULL) {
106
+		return new Rule("number", $prompt);
107 107
 	}
108 108
 
109
-	public static function is($value,$prompt=NULL){
110
-		return new Rule("is[".$value."]",$prompt);
109
+	public static function is($value, $prompt=NULL) {
110
+		return new Rule("is[".$value."]", $prompt);
111 111
 	}
112 112
 
113
-	public static function isExactly($value,$prompt=NULL){
114
-		return new Rule("isExactly[".$value."]",$prompt);
113
+	public static function isExactly($value, $prompt=NULL) {
114
+		return new Rule("isExactly[".$value."]", $prompt);
115 115
 	}
116 116
 
117
-	public static function not($value,$prompt=NULL){
118
-		return new Rule("not[".$value."]",$prompt);
117
+	public static function not($value, $prompt=NULL) {
118
+		return new Rule("not[".$value."]", $prompt);
119 119
 	}
120 120
 
121
-	public static function notExactly($value,$prompt=NULL){
122
-		return new Rule("notExactly[".$value."]",$prompt);
121
+	public static function notExactly($value, $prompt=NULL) {
122
+		return new Rule("notExactly[".$value."]", $prompt);
123 123
 	}
124 124
 
125
-	public static function contains($value,$prompt=NULL){
126
-		return new Rule("contains[".$value."]",$prompt);
125
+	public static function contains($value, $prompt=NULL) {
126
+		return new Rule("contains[".$value."]", $prompt);
127 127
 	}
128 128
 
129
-	public static function containsExactly($value,$prompt=NULL){
130
-		return new Rule("containsExactly[".$value."]",$prompt);
129
+	public static function containsExactly($value, $prompt=NULL) {
130
+		return new Rule("containsExactly[".$value."]", $prompt);
131 131
 	}
132 132
 
133
-	public static function doesntContain($value,$prompt=NULL){
134
-		return new Rule("doesntContain[".$value."]",$prompt);
133
+	public static function doesntContain($value, $prompt=NULL) {
134
+		return new Rule("doesntContain[".$value."]", $prompt);
135 135
 	}
136 136
 
137
-	public static function doesntContainExactly($value,$prompt=NULL){
138
-		return new Rule("doesntContainExactly[".$value."]",$prompt);
137
+	public static function doesntContainExactly($value, $prompt=NULL) {
138
+		return new Rule("doesntContainExactly[".$value."]", $prompt);
139 139
 	}
140 140
 
141
-	public static function minCount($value,$prompt=NULL){
142
-		return new Rule("minCount[".$value."]",$prompt);
141
+	public static function minCount($value, $prompt=NULL) {
142
+		return new Rule("minCount[".$value."]", $prompt);
143 143
 	}
144 144
 
145
-	public static function maxCount($value,$prompt=NULL){
146
-		return new Rule("maxCount[".$value."]",$prompt);
145
+	public static function maxCount($value, $prompt=NULL) {
146
+		return new Rule("maxCount[".$value."]", $prompt);
147 147
 	}
148 148
 
149
-	public static function exactCount($value,$prompt=NULL){
150
-		return new Rule("exactCount[".$value."]",$prompt);
149
+	public static function exactCount($value, $prompt=NULL) {
150
+		return new Rule("exactCount[".$value."]", $prompt);
151 151
 	}
152 152
 
153
-	public static function email($prompt=NULL){
154
-		return new Rule("email",$prompt);
153
+	public static function email($prompt=NULL) {
154
+		return new Rule("email", $prompt);
155 155
 	}
156 156
 
157
-	public static function url($prompt=NULL){
158
-		return new Rule("url",$prompt);
157
+	public static function url($prompt=NULL) {
158
+		return new Rule("url", $prompt);
159 159
 	}
160 160
 
161
-	public static function regExp($value,$prompt=NULL){
162
-		return new Rule("regExp",$prompt,$value);
161
+	public static function regExp($value, $prompt=NULL) {
162
+		return new Rule("regExp", $prompt, $value);
163 163
 	}
164 164
 
165
-	public static function custom($name,$jsFunction){
166
-		return "$.fn.form.settings.rules.".$name." =".$jsFunction ;
165
+	public static function custom($name, $jsFunction) {
166
+		return "$.fn.form.settings.rules.".$name." =".$jsFunction;
167 167
 	}
168 168
 
169
-	public static function ajax(JsUtils $js,$name,$url,$params,$jsCallback,$method="post",$parameters=[]){
170
-		$parameters=\array_merge(["async"=>false,"url"=>$url,"params"=>$params,"hasLoader"=>false,"jsCallback"=>$jsCallback,"dataType"=>"json","stopPropagation"=>false,"preventDefault"=>false,"responseElement"=>null],$parameters);
169
+	public static function ajax(JsUtils $js, $name, $url, $params, $jsCallback, $method="post", $parameters=[]) {
170
+		$parameters=\array_merge(["async"=>false, "url"=>$url, "params"=>$params, "hasLoader"=>false, "jsCallback"=>$jsCallback, "dataType"=>"json", "stopPropagation"=>false, "preventDefault"=>false, "responseElement"=>null], $parameters);
171 171
 		$ajax=new AjaxCall($method, $parameters);
172 172
 		return self::custom($name, "function(value){var result=true;".$ajax->compile($js)."return result;}");
173 173
 	}
Please login to merge, or discard this patch.