Completed
Push — master ( 7fd7ba...694cc2 )
by Jean-Christophe
03:50
created
Ajax/bootstrap/html/base/HtmlNavElement.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
 	protected $attr;
21 21
 	
22 22
 	
23
-	public function __construct($identifier,$tagName){
24
-		parent::__construct($identifier,$tagName);
23
+	public function __construct($identifier, $tagName) {
24
+		parent::__construct($identifier, $tagName);
25 25
 		$this->root="";
26 26
 		$this->attr="data-ajax";
27 27
 	}
@@ -33,11 +33,11 @@  discard block
 block discarded – undo
33 33
 	 * @param string $attr the html attribute used to build the elements url
34 34
 	 * @return HtmlNavElement
35 35
 	 */
36
-	public function autoGetOnClick($targetSelector){
37
-		return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr));
36
+	public function autoGetOnClick($targetSelector) {
37
+		return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr));
38 38
 	}
39 39
 	
40
-	public function contentAsString(){
40
+	public function contentAsString() {
41 41
 		return implode("", $this->content);
42 42
 	}
43 43
 	
@@ -45,15 +45,15 @@  discard block
 block discarded – undo
45 45
 	 * Generate the jquery script to set the elements to the HtmlNavElement
46 46
 	 * @param JsUtils $jsUtils
47 47
 	 */
48
-	public function jsSetContent(JsUtils $jsUtils){
49
-		$jsUtils->html("#".$this->identifier,str_replace("\"","'", $this->contentAsString()),true);
48
+	public function jsSetContent(JsUtils $jsUtils) {
49
+		$jsUtils->html("#".$this->identifier, str_replace("\"", "'", $this->contentAsString()), true);
50 50
 	}
51 51
 	
52 52
 	public function getRoot() {
53 53
 		return $this->root;
54 54
 	}
55 55
 	public function setRoot($root) {
56
-		$this->root = $root;
56
+		$this->root=$root;
57 57
 		return $this;
58 58
 	}
59 59
 	public function getAttr() {
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 	 * @return HtmlNavElement
67 67
 	 */
68 68
 	public function setAttr($attr) {
69
-		$this->attr = $attr;
69
+		$this->attr=$attr;
70 70
 		return $this;
71 71
 	}
72 72
 
73 73
 	public function __call($method, $args) {
74
-		if(isset($this->$method) && is_callable($this->$method)) {
74
+		if (isset($this->$method) && is_callable($this->$method)) {
75 75
 			return call_user_func_array(
76 76
 					$this->$method,
77 77
 					$args
Please login to merge, or discard this patch.
Ajax/bootstrap/html/base/BaseHtml.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@  discard block
 block discarded – undo
15 15
 abstract class BaseHtml extends BaseWidget {
16 16
 	protected $_template;
17 17
 	protected $tagName;
18
-	protected $properties=array ();
19
-	protected $events=array ();
18
+	protected $properties=array();
19
+	protected $events=array();
20 20
 	protected $wrapBefore="";
21 21
 	protected $wrapAfter="";
22 22
 	protected $_bsComponent;
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
 	public function addToProperty($name, $value, $separator=" ") {
57 57
 		$v=$this->properties [$name];
58
-		if (isset($v)&&$v!=="")
58
+		if (isset($v) && $v!=="")
59 59
 			$v=$v.$separator.$value;
60 60
 		else
61 61
 			$v=$value;
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
 
71 71
 	public function compile(JsUtils $js=NULL, View $view=NULL) {
72 72
 		$result=$this->getTemplate();
73
-		foreach ( $this as $key => $value ) {
74
-			if (PhalconUtils::startsWith($key, "_")===false&&$key!=="events") {
73
+		foreach ($this as $key => $value) {
74
+			if (PhalconUtils::startsWith($key, "_")===false && $key!=="events") {
75 75
 				if (is_array($value)) {
76 76
 					$v=PropertyWrapper::wrap($value, $js);
77
-				} else {
77
+				}else {
78 78
 					$v=$value;
79 79
 				}
80 80
 				$result=str_ireplace("%".$key."%", $v, $result);
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 		if (isset($view)===true) {
87 87
 			$controls=$view->getVar("q");
88 88
 			if (isset($controls)===false) {
89
-				$controls=array ();
89
+				$controls=array();
90 90
 			}
91 91
 			$controls [$this->identifier]=$result;
92 92
 			$view->setVar("q", $controls);
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 			if (array_search($value, $typeCtrl)===false) {
100 100
 				throw new \Exception("La valeur passée a propriété `".$name."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}");
101 101
 			}
102
-		} else {
102
+		}else {
103 103
 			if (!$typeCtrl($value)) {
104 104
 				throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$name);
105 105
 			}
@@ -176,28 +176,28 @@  discard block
 block discarded – undo
176 176
 	}
177 177
 
178 178
 	public function fromArray($array) {
179
-		foreach ( $this as $key => $value ) {
179
+		foreach ($this as $key => $value) {
180 180
 			if (array_key_exists($key, $array) && !PhalconUtils::startsWith($key, "_")) {
181 181
 					$setter="set".ucfirst($key);
182 182
 					$this->$setter($array [$key]);
183 183
 				unset($array [$key]);
184 184
 			}
185 185
 		}
186
-		foreach ( $array as $key => $value ) {
186
+		foreach ($array as $key => $value) {
187 187
 			if (method_exists($this, $key)) {
188 188
 				try {
189 189
 					$this->$key($value);
190 190
 					unset($array [$key]);
191
-				} catch ( \Exception $e ) {
191
+				} catch (\Exception $e) {
192 192
 					// Nothing to do
193 193
 				}
194
-			} else {
194
+			}else {
195 195
 				$setter="set".ucfirst($key);
196 196
 				if (method_exists($this, $setter)) {
197 197
 					try {
198 198
 						$this->$setter($value);
199 199
 						unset($array [$key]);
200
-					} catch ( \Exception $e ) {
200
+					} catch (\Exception $e) {
201 201
 						// Nothing to do
202 202
 					}
203 203
 				}
@@ -206,21 +206,21 @@  discard block
 block discarded – undo
206 206
 		return $array;
207 207
 	}
208 208
 
209
-	public function fromDatabaseObjects($objects,$function) {
210
-		if(isset($objects)){
211
-			foreach ($objects as $object){
212
-				$this->fromDatabaseObject($object,$function);
209
+	public function fromDatabaseObjects($objects, $function) {
210
+		if (isset($objects)) {
211
+			foreach ($objects as $object) {
212
+				$this->fromDatabaseObject($object, $function);
213 213
 			}
214 214
 		}
215 215
 		return $this;
216 216
 	}
217 217
 
218
-	public function fromDatabaseObject($object,$function){
218
+	public function fromDatabaseObject($object, $function) {
219 219
 
220 220
 	}
221 221
 
222 222
 	public function wrap($before, $after="") {
223
-		if(isset($before)){
223
+		if (isset($before)) {
224 224
 			$this->wrapBefore.=$before;
225 225
 		}
226 226
 		$this->wrapAfter=$after.$this->wrapAfter;
@@ -242,13 +242,13 @@  discard block
 block discarded – undo
242 242
 		if (array_key_exists($event, $this->events)) {
243 243
 			if (is_array($this->events [$event])) {
244 244
 				$this->events [$event] []=$jsCode;
245
-			} else {
246
-				$this->events [$event]=array (
245
+			}else {
246
+				$this->events [$event]=array(
247 247
 						$this->events [$event],
248 248
 						$jsCode
249 249
 				);
250 250
 			}
251
-		} else {
251
+		}else {
252 252
 			$this->events [$event]=$jsCode;
253 253
 		}
254 254
 	}
@@ -267,14 +267,14 @@  discard block
 block discarded – undo
267 267
 
268 268
 	public function addEventsOnRun(JsUtils $js) {
269 269
 		if (isset($this->_bsComponent)) {
270
-			foreach ( $this->events as $event => $jsCode ) {
270
+			foreach ($this->events as $event => $jsCode) {
271 271
 				$code=$jsCode;
272 272
 				if (is_array($jsCode)) {
273 273
 					$code="";
274
-					foreach ( $jsCode as $jsC ) {
274
+					foreach ($jsCode as $jsC) {
275 275
 						if ($jsC instanceof AjaxCall) {
276 276
 							$code.="\n".$jsC->compile($js);
277
-						} else {
277
+						}else {
278 278
 							$code.="\n".$jsC;
279 279
 						}
280 280
 					}
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
 	}
289 289
 
290 290
 	public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) {
291
-		$params=array (
291
+		$params=array(
292 292
 				"url" => $url,
293 293
 				"responseElement" => $responseElement
294 294
 		);
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
 		if (is_array($elements)) {
328 328
 			$flag=false;
329 329
 			$index=0;
330
-			while ( !$flag&&$index<sizeof($elements) ) {
330
+			while (!$flag && $index<sizeof($elements)) {
331 331
 				if ($elements [$index] instanceof BaseHtml)
332 332
 					$flag=($elements [$index]->getIdentifier()===$identifier);
333 333
 				$index++;
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
 		return null;
342 342
 	}
343 343
 
344
-	public function __toString(){
344
+	public function __toString() {
345 345
 		return $this->compile();
346 346
 	}
347 347
 
@@ -357,25 +357,25 @@  discard block
 block discarded – undo
357 357
 		if (is_array($value)) {
358 358
 			$value=implode(",", $value);
359 359
 		}
360
-		if (strrpos($value, 'this')===false&&strrpos($value, 'event')===false) {
360
+		if (strrpos($value, 'this')===false && strrpos($value, 'event')===false) {
361 361
 			$value='"'.$value.'"';
362 362
 		}
363 363
 		return $value;
364 364
 	}
365 365
 
366
-	public function jsDoJquery($jqueryCall, $param=""){
366
+	public function jsDoJquery($jqueryCall, $param="") {
367 367
 		return "$('#".$this->identifier."').".$jqueryCall."(".$this->_prep_value($param).");";
368 368
 	}
369 369
 
370
-	public function jsHtml($content=""){
371
-		return $this->jsDoJquery("html",$content);
370
+	public function jsHtml($content="") {
371
+		return $this->jsDoJquery("html", $content);
372 372
 	}
373 373
 
374
-	public function jsShow(){
374
+	public function jsShow() {
375 375
 		return $this->jsDoJquery("show");
376 376
 	}
377 377
 
378
-	public function jsHide(){
378
+	public function jsHide() {
379 379
 		return $this->jsDoJquery("hide");
380 380
 	}
381 381
 }
382 382
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/Bootstrap.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -269,8 +269,8 @@  discard block
 block discarded – undo
269 269
 	 * @param string $tagName container tagName
270 270
 	 * @return HtmlListgroup
271 271
 	 */
272
-	public function htmlListgroup($identifier,$items=array(),$tagName="ul"){
273
-		$listGroup=new HtmlListgroup($identifier,$tagName);
272
+	public function htmlListgroup($identifier, $items=array(), $tagName="ul") {
273
+		$listGroup=new HtmlListgroup($identifier, $tagName);
274 274
 		$listGroup->addItems($items);
275 275
 		return $this->addHtmlComponent($listGroup);
276 276
 	}
@@ -295,8 +295,8 @@  discard block
 block discarded – undo
295 295
 	 * @param string $onClick
296 296
 	 * @return HtmlSplitbutton
297 297
 	 */
298
-	public function htmlSplitbutton($identifier,$value="", $items=array(), $cssStyle="btn-default", $onClick=NULL) {
299
-		return $this->addHtmlComponent(new HtmlSplitbutton($identifier, $value, $items, $cssStyle,$onClick));
298
+	public function htmlSplitbutton($identifier, $value="", $items=array(), $cssStyle="btn-default", $onClick=NULL) {
299
+		return $this->addHtmlComponent(new HtmlSplitbutton($identifier, $value, $items, $cssStyle, $onClick));
300 300
 	}
301 301
 
302 302
 	/**
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
 	 * @param string $identifier
305 305
 	 * @return HtmlInputgroup
306 306
 	 */
307
-	public function htmlInputgroup($identifier){
307
+	public function htmlInputgroup($identifier) {
308 308
 		return $this->addHtmlComponent(new HtmlInputgroup($identifier));
309 309
 	}
310 310
 	
@@ -316,8 +316,8 @@  discard block
 block discarded – undo
316 316
 	 * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()}
317 317
 	 * @return HtmlBreadcrumbs
318 318
 	 */
319
-	public function htmlBreadcrumbs($identifier,$elements=array(),$autoActive=true,$hrefFunction=NULL){
320
-		return $this->addHtmlComponent(new HtmlBreadcrumbs($identifier,$elements,$autoActive,$hrefFunction));
319
+	public function htmlBreadcrumbs($identifier, $elements=array(), $autoActive=true, $hrefFunction=NULL) {
320
+		return $this->addHtmlComponent(new HtmlBreadcrumbs($identifier, $elements, $autoActive, $hrefFunction));
321 321
 	}
322 322
 	
323 323
 	/**
@@ -329,8 +329,8 @@  discard block
 block discarded – undo
329 329
 	 * @param int $active The active page
330 330
 	 * @return HtmlPagination
331 331
 	 */
332
-	public function htmlPagination($identifier,$from=1,$to=1,$active=NULL,$countVisible=NULL){
333
-		return $this->addHtmlComponent(new HtmlPagination($identifier,$from,$to,$active,$countVisible));
332
+	public function htmlPagination($identifier, $from=1, $to=1, $active=NULL, $countVisible=NULL) {
333
+		return $this->addHtmlComponent(new HtmlPagination($identifier, $from, $to, $active, $countVisible));
334 334
 	}
335 335
 	
336 336
 	/**
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
 	 * @param int $numCols
342 342
 	 * @return HtmlGridSystem
343 343
 	 */
344
-	public function htmlGridSystem($identifier,$numRows=1,$numCols=NULL){
345
-		return $this->addHtmlComponent(new HtmlGridSystem($identifier,$numRows,$numCols));
344
+	public function htmlGridSystem($identifier, $numRows=1, $numCols=NULL) {
345
+		return $this->addHtmlComponent(new HtmlGridSystem($identifier, $numRows, $numCols));
346 346
 	}
347 347
 }
348 348
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlGridsystem.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@  discard block
 block discarded – undo
16 16
 class HtmlGridSystem extends HtmlDoubleElement {
17 17
 	private $rows;
18 18
 	
19
-	public function __construct($identifier,$numRows=1,$numCols=NULL){
20
-		parent::__construct($identifier,"div");
19
+	public function __construct($identifier, $numRows=1, $numCols=NULL) {
20
+		parent::__construct($identifier, "div");
21 21
 		$this->setProperty("class", "container-fluid");
22 22
 		$this->rows=array();
23
-		$this->setNumRows($numRows,$numCols);
23
+		$this->setNumRows($numRows, $numCols);
24 24
 	}
25 25
 	
26 26
 	/**
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
 	 * @param int $numCols 
29 29
 	 * @return \Ajax\bootstrap\html\content\HtmlGridRow
30 30
 	 */
31
-	public function addRow($numCols=NULL){
32
-		$row=new HtmlGridRow($this->identifier."-row-".(sizeof($this->rows)+1),$numCols);
31
+	public function addRow($numCols=NULL) {
32
+		$row=new HtmlGridRow($this->identifier."-row-".(sizeof($this->rows)+1), $numCols);
33 33
 		$this->rows[]=$row;
34 34
 		return $row;
35 35
 	}
@@ -40,10 +40,10 @@  discard block
 block discarded – undo
40 40
 	 * @param boolean $force add the row at $index if true
41 41
 	 * @return \Ajax\bootstrap\html\content\HtmlGridRow
42 42
 	 */
43
-	public function getRow($index,$force=true){
44
-		if($index<sizeof($this->rows)){
43
+	public function getRow($index, $force=true) {
44
+		if ($index<sizeof($this->rows)) {
45 45
 			$result=$this->rows[$index-1];
46
-		}else if ($force){
46
+		}else if ($force) {
47 47
 			$this->setNumRows($index);
48 48
 			$result=$this->rows[$index-1];
49 49
 		}
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
 	 * @param int $numCols
57 57
 	 * @return \Ajax\bootstrap\html\HtmlGridSystem
58 58
 	 */
59
-	public function setNumRows($numRows,$numCols=NULL){
60
-		for($i=sizeof($this->rows);$i<$numRows;$i++){
59
+	public function setNumRows($numRows, $numCols=NULL) {
60
+		for ($i=sizeof($this->rows); $i<$numRows; $i++) {
61 61
 			$this->addRow($numCols);
62 62
 		}
63 63
 		return $this;
@@ -69,10 +69,10 @@  discard block
 block discarded – undo
69 69
 	 * @param $force add the cell at $row,$col if true
70 70
 	 * @return HtmlGridCol
71 71
 	 */
72
-	public function getCell($row,$col,$force=true){
73
-		$row=$this->getRow($row,$force);
74
-		if(isset($row)){
75
-			$col=$row->getCol($col,$force);
72
+	public function getCell($row, $col, $force=true) {
73
+		$row=$this->getRow($row, $force);
74
+		if (isset($row)) {
75
+			$col=$row->getCol($col, $force);
76 76
 		}
77 77
 		return $col;
78 78
 	}
@@ -82,22 +82,22 @@  discard block
 block discarded – undo
82 82
 	 * @param int $col
83 83
 	 * @return HtmlGridCol
84 84
 	 */
85
-	public function getCellAt($row,$col,$force=true){
86
-		$row=$this->getRow($row,$force);
87
-		if(isset($row)){
88
-			$col=$row->getColAt($col,$force);
85
+	public function getCellAt($row, $col, $force=true) {
86
+		$row=$this->getRow($row, $force);
87
+		if (isset($row)) {
88
+			$col=$row->getColAt($col, $force);
89 89
 		}
90 90
 		return $col;
91 91
 	}
92 92
 	
93 93
 	public function compile(JsUtils $js=NULL, View $view=NULL) {
94
-		foreach ($this->rows as $row){
94
+		foreach ($this->rows as $row) {
95 95
 			$this->addContent($row);
96 96
 		}
97
-		return parent::compile($js,$view);
97
+		return parent::compile($js, $view);
98 98
 	}
99
-	public function setContentForAll($content){
100
-		foreach ($this->rows as $row){
99
+	public function setContentForAll($content) {
100
+		foreach ($this->rows as $row) {
101 101
 			$row->setContentForAll($content);
102 102
 		}
103 103
 	}
Please login to merge, or discard this patch.
Ajax/bootstrap/html/content/HtmlGridCol.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -15,22 +15,22 @@  discard block
 block discarded – undo
15 15
 class HtmlGridCol extends HtmlDoubleElement {
16 16
 	private $positions;
17 17
 	private $offsets;
18
-	public function __construct($identifier,$size=CssSize::SIZE_MD,$width=1){
19
-		parent::__construct($identifier,"div");
18
+	public function __construct($identifier, $size=CssSize::SIZE_MD, $width=1) {
19
+		parent::__construct($identifier, "div");
20 20
 		$this->positions=array();
21 21
 		$this->offsets=array();
22
-		$this->addPosition($size,$width);
22
+		$this->addPosition($size, $width);
23 23
 	}
24
-	public function addPosition($size=CssSize::SIZE_MD,$width=1){
24
+	public function addPosition($size=CssSize::SIZE_MD, $width=1) {
25 25
 		$this->positions[$size]=$width;
26 26
 		return $this;
27 27
 	}
28
-	private function _generateClass(){
28
+	private function _generateClass() {
29 29
 		$result=array();
30
-		foreach ($this->positions as $size=>$width){
30
+		foreach ($this->positions as $size=>$width) {
31 31
 			$result[]="col-".$size."-".$width;
32 32
 		}
33
-		foreach ($this->offsets as $size=>$offset){
33
+		foreach ($this->offsets as $size=>$offset) {
34 34
 			$result[]="col-".$size."-offset-".$offset;
35 35
 		}
36 36
 		return implode(" ", $result);
@@ -38,63 +38,63 @@  discard block
 block discarded – undo
38 38
 	
39 39
 	public function compile(JsUtils $js=NULL, View $view=NULL) {
40 40
 		$this->setProperty("class", $this->_generateClass());
41
-		return parent::compile($js,$view);
41
+		return parent::compile($js, $view);
42 42
 	}
43 43
 	
44
-	public function setOffset($size,$offset){
44
+	public function setOffset($size, $offset) {
45 45
 		$this->offsets[$size]=$offset;
46 46
 		return $this;
47 47
 	}
48 48
 
49
-	public function setOffsetForAll($newOffset){
50
-		foreach ($this->offsets as &$value){
49
+	public function setOffsetForAll($newOffset) {
50
+		foreach ($this->offsets as &$value) {
51 51
 			$value=$newOffset;
52 52
 		}
53 53
 		unset($value);
54 54
 		return $this;
55 55
 	}
56 56
 	
57
-	public function setWidthForAll($newWidth){
58
-		foreach ($this->positions as &$pos){
57
+	public function setWidthForAll($newWidth) {
58
+		foreach ($this->positions as &$pos) {
59 59
 			$pos=$newWidth;
60 60
 		}
61 61
 		unset($pos);
62 62
 		return $this;
63 63
 	}
64 64
 	
65
-	public function setWidth($size=CssSize::SIZE_MD,$width=1){
65
+	public function setWidth($size=CssSize::SIZE_MD, $width=1) {
66 66
 		$this->positions[$size]=$width;
67 67
 		return $this;	
68 68
 	}
69 69
 	
70
-	public function setPosition($size=CssSize::SIZE_MD,$width=1){
71
-		return $this->addPosition($size,$width);
70
+	public function setPosition($size=CssSize::SIZE_MD, $width=1) {
71
+		return $this->addPosition($size, $width);
72 72
 	}
73 73
 	
74
-	public function getWidth($size){
74
+	public function getWidth($size) {
75 75
 		return @$this->positions[$size];
76 76
 	}
77 77
 	
78
-	public function getOffest($size){
78
+	public function getOffest($size) {
79 79
 		return @$this->offsets[$size];
80 80
 	}
81 81
 	
82
-	public function addClear(){
83
-		$this->wrap("","<div class='clearfix'></div>");
82
+	public function addClear() {
83
+		$this->wrap("", "<div class='clearfix'></div>");
84 84
 	}
85 85
 	public function setOffsets($offsets) {
86
-		$this->offsets = $offsets;
86
+		$this->offsets=$offsets;
87 87
 		return $this;
88 88
 	}
89 89
 	
90
-	public function copy($identifier){
90
+	public function copy($identifier) {
91 91
 		$result=new HtmlGridCol($identifier);
92 92
 		$result->setPositions($this->positions);
93 93
 		$result->setOffsets($this->offsets);
94 94
 		return $result;
95 95
 	}
96 96
 	public function setPositions($positions) {
97
-		$this->positions = $positions;
97
+		$this->positions=$positions;
98 98
 		return $this;
99 99
 	}
100 100
 	public function getOffsets() {
Please login to merge, or discard this patch.
Ajax/bootstrap/html/content/HtmlGridRow.php 1 patch
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -14,88 +14,88 @@
 block discarded – undo
14 14
  */
15 15
 class HtmlGridRow extends HtmlDoubleElement {
16 16
 	private $cols;
17
-	public function __construct($identifier,$numCols=NULL){
18
-		parent::__construct($identifier,"div");
17
+	public function __construct($identifier, $numCols=NULL) {
18
+		parent::__construct($identifier, "div");
19 19
 		$this->setProperty("class", "row");
20 20
 		$this->cols=array();
21
-		if(isset($numCols)){
22
-			$numCols=min(12,$numCols);
23
-			$numCols=max(1,$numCols);
24
-			$width=12/$numCols;
25
-			for ($i=0;$i<$numCols;$i++){
26
-				$this->addCol(CssSize::SIZE_MD,$width);
21
+		if (isset($numCols)) {
22
+			$numCols=min(12, $numCols);
23
+			$numCols=max(1, $numCols);
24
+			$width=12 / $numCols;
25
+			for ($i=0; $i<$numCols; $i++) {
26
+				$this->addCol(CssSize::SIZE_MD, $width);
27 27
 			}
28 28
 		}
29 29
 	}
30 30
 	
31
-	public function addCol($size=CssSize::SIZE_MD,$width=1){
32
-		$col=new HtmlGridCol($this->identifier."-col-".(sizeof($this->cols)+1),$size,$width);
31
+	public function addCol($size=CssSize::SIZE_MD, $width=1) {
32
+		$col=new HtmlGridCol($this->identifier."-col-".(sizeof($this->cols)+1), $size, $width);
33 33
 		$this->cols[]=$col;
34 34
 		return $col;
35 35
 	}
36 36
 	
37
-	public function addColAt($size=CssSize::SIZE_MD,$width=1,$offset=1){
38
-		$col=$this->addCol($size,$width);
39
-		return $col->setOffset($size, max($offset,sizeof($this->cols)+1));
37
+	public function addColAt($size=CssSize::SIZE_MD, $width=1, $offset=1) {
38
+		$col=$this->addCol($size, $width);
39
+		return $col->setOffset($size, max($offset, sizeof($this->cols)+1));
40 40
 	}
41 41
 	
42
-	public function getCol($index,$force=true){
43
-		if($index<sizeof($this->cols)+1){
42
+	public function getCol($index, $force=true) {
43
+		if ($index<sizeof($this->cols)+1) {
44 44
 			$result=$this->cols[$index-1];
45
-		}else if ($force){
46
-			$result=$this->addColAt(CssSize::SIZE_MD,1,$index);
45
+		}else if ($force) {
46
+			$result=$this->addColAt(CssSize::SIZE_MD, 1, $index);
47 47
 		}
48 48
 		return $result;
49 49
 	}
50 50
 	
51
-	public function getColAt($offset,$force=true){
51
+	public function getColAt($offset, $force=true) {
52 52
 		$result=null;
53
-		foreach ($this->cols as $col){
53
+		foreach ($this->cols as $col) {
54 54
 			$offsets=$col->getOffsets();
55
-			if($result=array_search($offset, $offsets)){
55
+			if ($result=array_search($offset, $offsets)) {
56 56
 				break;
57 57
 			}
58 58
 		}
59
-		if(!$result || isset($result)==false){
60
-			$result=$this->getCol($offset,$force);
59
+		if (!$result || isset($result)==false) {
60
+			$result=$this->getCol($offset, $force);
61 61
 		}
62 62
 		return $result;
63 63
 	}
64 64
 	
65 65
 	public function compile(JsUtils $js=NULL, View $view=NULL) {
66 66
 	
67
-		foreach ($this->cols as $col){
67
+		foreach ($this->cols as $col) {
68 68
 			$this->addContent($col);
69 69
 		}
70
-		return parent::compile($js,$view);
70
+		return parent::compile($js, $view);
71 71
 	}
72 72
 	public function getCols() {
73 73
 		return $this->cols;
74 74
 	}
75 75
 	
76
-	public function setContentForAll($content){
77
-		foreach ($this->cols as $col){
76
+	public function setContentForAll($content) {
77
+		foreach ($this->cols as $col) {
78 78
 			$col->setContent($content);
79 79
 		}
80 80
 	}
81
-	public function merge($size=CssSize::SIZE_MD,$start,$width){
82
-		$col=$this->getColAt($start,false);
83
-		if(isset($col)){
84
-			$col->setWidth($size,$width+1);
85
-			$this->delete($size,$start+1, $width);
81
+	public function merge($size=CssSize::SIZE_MD, $start, $width) {
82
+		$col=$this->getColAt($start, false);
83
+		if (isset($col)) {
84
+			$col->setWidth($size, $width+1);
85
+			$this->delete($size, $start+1, $width);
86 86
 		}
87 87
 	}
88
-	public function delete($size=CssSize::SIZE_MD,$start,$width){
89
-		while($start<sizeof($this->cols)+1 && $width>0){
90
-			$col=$this->getColAt($start,false);
91
-			if(isset($col)){
88
+	public function delete($size=CssSize::SIZE_MD, $start, $width) {
89
+		while ($start<sizeof($this->cols)+1 && $width>0) {
90
+			$col=$this->getColAt($start, false);
91
+			if (isset($col)) {
92 92
 				$widthCol=$col->getWidth($size);
93
-				if($widthCol<=$width){
93
+				if ($widthCol<=$width) {
94 94
 					unset($this->cols[$start-1]);
95
-					$this->cols = array_values($this->cols);
95
+					$this->cols=array_values($this->cols);
96 96
 					$width=$width-$widthCol;
97 97
 				}
98
-			}else{
98
+			}else {
99 99
 				$width=0;
100 100
 			}
101 101
 		}
Please login to merge, or discard this patch.
Ajax/Jquery.php 1 patch
Spacing   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
 	protected $_bootstrap;
22 22
 	protected $libraryFile;
23 23
 	protected $_javascript_folder='js';
24
-	protected $jquery_code_for_load=array ();
25
-	protected $jquery_code_for_compile=array ();
24
+	protected $jquery_code_for_load=array();
25
+	protected $jquery_code_for_compile=array();
26 26
 	protected $jquery_corner_active=FALSE;
27 27
 	protected $jquery_table_sorter_active=FALSE;
28 28
 	protected $jquery_table_sorter_pager_active=FALSE;
29 29
 	protected $ajaxLoader='<span></span><span></span><span></span><span></span><span></span>';
30
-	protected $jquery_events=array (
31
-			"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"
30
+	protected $jquery_events=array(
31
+			"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"
32 32
 	);
33 33
 
34 34
 	public function setDi($di) {
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	 */
162 162
 	public function _click($element='this', $js=array(), $ret_false=TRUE) {
163 163
 		if (!is_array($js)) {
164
-			$js=array (
164
+			$js=array(
165 165
 					$js
166 166
 			);
167 167
 		}
@@ -356,12 +356,12 @@  discard block
 block discarded – undo
356 356
 	 */
357 357
 	public function _output($array_js='') {
358 358
 		if (!is_array($array_js)) {
359
-			$array_js=array (
359
+			$array_js=array(
360 360
 					$array_js
361 361
 			);
362 362
 		}
363 363
 
364
-		foreach ( $array_js as $js ) {
364
+		foreach ($array_js as $js) {
365 365
 			$this->jquery_code_for_compile[]="\t$js\n";
366 366
 		}
367 367
 	}
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
 	 * @param boolean $immediatly defers the execution if set to false
417 417
 	 * @return string
418 418
 	 */
419
-	public function after($element='this', $value='', $immediatly=false){
419
+	public function after($element='this', $value='', $immediatly=false) {
420 420
 		$element=$this->_prep_element($element);
421 421
 		$value=$this->_prep_value($value);
422 422
 		$str="$({$element}).after({$value});";
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
 		if (isset($value)) {
438 438
 			$value=$this->_prep_value($value);
439 439
 			$str="$({$element}).attr(\"$attributeName\",{$value});";
440
-		} else
440
+		}else
441 441
 			$str="$({$element}).attr(\"$attributeName\");";
442 442
 		if ($immediatly)
443 443
 			$this->jquery_code_for_compile[]=$str;
@@ -451,12 +451,12 @@  discard block
 block discarded – undo
451 451
 	 * @param string $param
452 452
 	 * @param boolean $immediatly delayed if false
453 453
 	 */
454
-	public function _genericCallValue($jQueryCall,$element='this', $param="", $immediatly=false) {
454
+	public function _genericCallValue($jQueryCall, $element='this', $param="", $immediatly=false) {
455 455
 		$element=$this->_prep_element($element);
456 456
 		if (isset($param)) {
457 457
 			$param=$this->_prep_value($param);
458 458
 			$str="$({$element}).{$jQueryCall}({$param});";
459
-		} else
459
+		}else
460 460
 			$str="$({$element}).{$jQueryCall}();";
461 461
 			if ($immediatly)
462 462
 				$this->jquery_code_for_compile[]=$str;
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
 	 * @param boolean $immediatly delayed if false
471 471
 	 * @return string
472 472
 	 */
473
-	public function _genericCallElement($jQueryCall,$to='this', $element, $immediatly=false) {
473
+	public function _genericCallElement($jQueryCall, $to='this', $element, $immediatly=false) {
474 474
 		$to=$this->_prep_element($to);
475 475
 		$element=$this->_prep_element($element);
476 476
 		$str="$({$to}).{$jQueryCall}({$element});";
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
 
497 497
 		$animations="\t\t\t";
498 498
 		if (is_array($params)) {
499
-			foreach ( $params as $param => $value ) {
499
+			foreach ($params as $param => $value) {
500 500
 				$animations.=$param.': \''.$value.'\', ';
501 501
 			}
502 502
 		}
@@ -768,12 +768,12 @@  discard block
 block discarded – undo
768 768
 	 */
769 769
 	public function sortable($element, $options=array()) {
770 770
 		if (count($options)>0) {
771
-			$sort_options=array ();
772
-			foreach ( $options as $k => $v ) {
771
+			$sort_options=array();
772
+			foreach ($options as $k => $v) {
773 773
 				$sort_options[]="\n\t\t".$k.': '.$v."";
774 774
 			}
775 775
 			$sort_options=implode(",", $sort_options);
776
-		} else {
776
+		}else {
777 777
 			$sort_options='';
778 778
 		}
779 779
 
@@ -807,7 +807,7 @@  discard block
 block discarded – undo
807 807
 	 * @param boolean $stopPropagation Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.
808 808
 	 * @return string
809 809
 	 */
810
-	public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true) {
810
+	public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true) {
811 811
 		if (is_array($js)) {
812 812
 			$js=implode("\n\t\t", $js);
813 813
 		}
@@ -821,7 +821,7 @@  discard block
 block discarded – undo
821 821
 			$event="\n\t$(".$this->_prep_element($element).").bind('{$event}',function(event){\n\t\t{$js}\n\t});\n";
822 822
 		else
823 823
 			$event="\n\t$(".$this->_prep_element($element).").{$event}(function(event){\n\t\t{$js}\n\t});\n";
824
-		if($immediatly)
824
+		if ($immediatly)
825 825
 			$this->jquery_code_for_compile[]=$event;
826 826
 		return $event;
827 827
 	}
@@ -855,7 +855,7 @@  discard block
 block discarded – undo
855 855
 
856 856
 		// External references
857 857
 		$external_scripts=implode('', $this->jquery_code_for_load);
858
-		extract(array (
858
+		extract(array(
859 859
 				'library_src' => $external_scripts
860 860
 		));
861 861
 
@@ -888,7 +888,7 @@  discard block
 block discarded – undo
888 888
 	 * @return void
889 889
 	 */
890 890
 	public function _clear_compile() {
891
-		$this->jquery_code_for_compile=array ();
891
+		$this->jquery_code_for_compile=array();
892 892
 	}
893 893
 
894 894
 	// --------------------------------------------------------------------
@@ -900,12 +900,12 @@  discard block
 block discarded – undo
900 900
 	 */
901 901
 	public function _document_ready($js) {
902 902
 		if (!is_array($js)) {
903
-			$js=array (
903
+			$js=array(
904 904
 					$js
905 905
 			);
906 906
 		}
907 907
 
908
-		foreach ( $js as $script ) {
908
+		foreach ($js as $script) {
909 909
 			$this->jquery_code_for_compile[]=$script;
910 910
 		}
911 911
 	}
@@ -921,7 +921,7 @@  discard block
 block discarded – undo
921 921
 	 * @return string
922 922
 	 */
923 923
 	public function _prep_element($element) {
924
-		if (strrpos($element, 'this')===false&&strrpos($element, 'event')===false&&strrpos($element, 'self')===false) {
924
+		if (strrpos($element, 'this')===false && strrpos($element, 'event')===false && strrpos($element, 'self')===false) {
925 925
 			$element='"'.addslashes($element).'"';
926 926
 		}
927 927
 		return $element;
@@ -939,7 +939,7 @@  discard block
 block discarded – undo
939 939
 		if (is_array($value)) {
940 940
 			$value=implode(",", $value);
941 941
 		}
942
-		if (strrpos($value, 'this')===false&&strrpos($value, 'event')===false&&strrpos($value, 'self')===false) {
942
+		if (strrpos($value, 'this')===false && strrpos($value, 'event')===false && strrpos($value, 'self')===false) {
943 943
 			$value='"'.$value.'"';
944 944
 		}
945 945
 		return $value;
@@ -954,8 +954,8 @@  discard block
 block discarded – undo
954 954
 	 * @return string
955 955
 	 */
956 956
 	private function _validate_speed($speed) {
957
-		if (in_array($speed, array (
958
-				'slow','normal','fast'
957
+		if (in_array($speed, array(
958
+				'slow', 'normal', 'fast'
959 959
 		))) {
960 960
 			$speed='"'.$speed.'"';
961 961
 		} elseif (preg_match("/[^0-9]/", $speed)) {
@@ -969,7 +969,7 @@  discard block
 block discarded – undo
969 969
 		$loading_notifier='<div class="ajax-loader">';
970 970
 		if ($this->ajaxLoader=='') {
971 971
 			$loading_notifier.="Loading...";
972
-		} else {
972
+		}else {
973 973
 			$loading_notifier.=$this->ajaxLoader;
974 974
 		}
975 975
 		$loading_notifier.='</div>';
@@ -977,20 +977,20 @@  discard block
 block discarded – undo
977 977
 		$retour.="\t\t$({$responseElement}).prepend('{$loading_notifier}');\n";
978 978
 	}
979 979
 
980
-	public function _get($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) {
981
-		return $this->_ajax("get", $url,$params,$responseElement,$jsCallback,$attr,$hasLoader,$immediatly);
980
+	public function _get($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true, $immediatly=false) {
981
+		return $this->_ajax("get", $url, $params, $responseElement, $jsCallback, $attr, $hasLoader, $immediatly);
982 982
 	}
983
-	public function _post($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) {
984
-		return $this->_ajax("post", $url,$params,$responseElement,$jsCallback,$attr,$hasLoader,$immediatly);
983
+	public function _post($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true, $immediatly=false) {
984
+		return $this->_ajax("post", $url, $params, $responseElement, $jsCallback, $attr, $hasLoader, $immediatly);
985 985
 	}
986 986
 
987
-	protected function _ajax($method,$url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) {
988
-		if(JString::isNull($params)){$params="{}";}
987
+	protected function _ajax($method, $url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true, $immediatly=false) {
988
+		if (JString::isNull($params)) {$params="{}"; }
989 989
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
990 990
 		$retour=$this->_getAjaxUrl($url, $attr);
991 991
 		$responseElement=$this->_getResponseElement($responseElement);
992 992
 		$retour.="var self=this;\n";
993
-		if($hasLoader===true){
993
+		if ($hasLoader===true) {
994 994
 			$this->addLoading($retour, $responseElement);
995 995
 		}
996 996
 		$retour.="$.".$method."(url,".$params.").done(function( data ) {\n";
@@ -1000,22 +1000,22 @@  discard block
 block discarded – undo
1000 1000
 		return $retour;
1001 1001
 	}
1002 1002
 
1003
-	protected function _getAjaxUrl($url,$attr){
1003
+	protected function _getAjaxUrl($url, $attr) {
1004 1004
 		$url=$this->_correctAjaxUrl($url);
1005 1005
 		$retour="url='".$url."';\n";
1006 1006
 		$slash="/";
1007
-		if(PhalconUtils::endsWith($url, "/"))
1007
+		if (PhalconUtils::endsWith($url, "/"))
1008 1008
 			$slash="";
1009
-		if(JString::isNotNull($attr)){
1009
+		if (JString::isNotNull($attr)) {
1010 1010
 			if ($attr=="value")
1011 1011
 				$retour.="url=url+'".$slash."'+$(this).val();\n";
1012
-			else if($attr!=null && $attr!=="")
1012
+			else if ($attr!=null && $attr!=="")
1013 1013
 				$retour.="url=url+'".$slash."'+$(this).attr('".$attr."');\n";
1014 1014
 		}
1015 1015
 		return $retour;
1016 1016
 	}
1017 1017
 
1018
-	protected function _getOnAjaxDone($responseElement,$jsCallback){
1018
+	protected function _getOnAjaxDone($responseElement, $jsCallback) {
1019 1019
 		$retour="";
1020 1020
 		if ($responseElement!=="") {
1021 1021
 			$retour="\t$({$responseElement}).html( data );\n";
@@ -1024,7 +1024,7 @@  discard block
 block discarded – undo
1024 1024
 		return $retour;
1025 1025
 	}
1026 1026
 	
1027
-	protected function _getResponseElement($responseElement){
1027
+	protected function _getResponseElement($responseElement) {
1028 1028
 		if ($responseElement!=="") {
1029 1029
 			$responseElement=$this->_prep_value($responseElement);
1030 1030
 		}
@@ -1034,7 +1034,7 @@  discard block
 block discarded – undo
1034 1034
 	protected function _correctAjaxUrl($url) {
1035 1035
 		if (PhalconUtils::endsWith($url, "/"))
1036 1036
 			$url=substr($url, 0, strlen($url)-1);
1037
-		if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) {
1037
+		if (strncmp($url, 'http://', 7)!=0 && strncmp($url, 'https://', 8)!=0) {
1038 1038
 			$url=$this->_di->get("url")->get($url);
1039 1039
 		}
1040 1040
 		return $url;
@@ -1048,7 +1048,7 @@  discard block
 block discarded – undo
1048 1048
 	 * @param string $jsCallback javascript code to execute after the request
1049 1049
 	 * @param boolean $immediatly
1050 1050
 	 */
1051
-	public function _json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document",$immediatly=false) {
1051
+	public function _json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document", $immediatly=false) {
1052 1052
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
1053 1053
 		$retour=$this->_getAjaxUrl($url, $attr);
1054 1054
 		$retour.="$.{$method}(url,".$params.").done(function( data ) {\n";
@@ -1069,7 +1069,7 @@  discard block
 block discarded – undo
1069 1069
 	 * @param string $url the request address
1070 1070
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true)
1071 1071
 	 */
1072
-	public function _jsonOn($event,$element, $url,$parameters=array()) {
1072
+	public function _jsonOn($event, $element, $url, $parameters=array()) {
1073 1073
 		$preventDefault=true;
1074 1074
 		$stopPropagation=true;
1075 1075
 		$jsCallback=null;
@@ -1079,7 +1079,7 @@  discard block
 block discarded – undo
1079 1079
 		$params="{}";
1080 1080
 		$immediatly=true;
1081 1081
 		extract($parameters);
1082
-		return $this->_add_event($element, $this->_json($url,$method, $params,$jsCallback, $attr,$context), $event, $preventDefault, $stopPropagation,$immediatly);
1082
+		return $this->_add_event($element, $this->_json($url, $method, $params, $jsCallback, $attr, $context), $event, $preventDefault, $stopPropagation, $immediatly);
1083 1083
 	}
1084 1084
 
1085 1085
 	/**
@@ -1091,19 +1091,19 @@  discard block
 block discarded – undo
1091 1091
 	 * @param string $context jquery DOM element, array container.
1092 1092
 	 * @param boolean $immediatly
1093 1093
 	 */
1094
-	public function _jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context=null,$immediatly=false) {
1094
+	public function _jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context=null, $immediatly=false) {
1095 1095
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
1096 1096
 		$retour=$this->_getAjaxUrl($url, $attr);
1097
-		if($context===null){
1097
+		if ($context===null) {
1098 1098
 			$appendTo="\t\tnewElm.appendTo($('".$maskSelector."').parent());\n";
1099
-			$newElm = "$('#'+newId)";
1100
-		}else{
1099
+			$newElm="$('#'+newId)";
1100
+		}else {
1101 1101
 			$appendTo="\t\tnewElm.appendTo(".$context.");\n";
1102
-			$newElm = $context.".find('#'+newId)";
1102
+			$newElm=$context.".find('#'+newId)";
1103 1103
 		}
1104 1104
 		$retour.="var self = $(this);\n$.{$method}(url,".$params.").done(function( data ) {\n";
1105 1105
 		$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();newElm.attr('id',newId);\n";
1106
-		$retour.= $appendTo;
1106
+		$retour.=$appendTo;
1107 1107
 		$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";
1108 1108
 		$retour.="\t$(document).trigger('jsonReady',[data]);\n";
1109 1109
 		$retour.="\t".$jsCallback."\n"."});\n";
@@ -1118,26 +1118,26 @@  discard block
 block discarded – undo
1118 1118
 	 * @param string $url the request address
1119 1119
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get", "context"=>null)
1120 1120
 	 */
1121
-	public function _jsonArrayOn($event,$element, $maskSelector,$url,$parameters=array()) {
1121
+	public function _jsonArrayOn($event, $element, $maskSelector, $url, $parameters=array()) {
1122 1122
 		$preventDefault=true;
1123 1123
 		$stopPropagation=true;
1124 1124
 		$jsCallback=null;
1125 1125
 		$attr="id";
1126 1126
 		$method="get";
1127
-		$context = null;
1127
+		$context=null;
1128 1128
 		$params="{}";
1129 1129
 		$immediatly=true;
1130 1130
 		extract($parameters);
1131
-		return $this->_add_event($element, $this->_jsonArray($maskSelector,$url,$method, $params,$jsCallback, $attr, $context), $event, $preventDefault, $stopPropagation,$immediatly);
1131
+		return $this->_add_event($element, $this->_jsonArray($maskSelector, $url, $method, $params, $jsCallback, $attr, $context), $event, $preventDefault, $stopPropagation, $immediatly);
1132 1132
 	}
1133 1133
 	
1134
-	public function _postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) {
1134
+	public function _postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $attr="id", $hasLoader=true, $immediatly=false) {
1135 1135
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
1136 1136
 		$retour=$this->_getAjaxUrl($url, $attr);
1137 1137
 		$retour.="\nvar params=$('#".$form."').serialize();\n";
1138 1138
 		$responseElement=$this->_getResponseElement($responseElement);
1139 1139
 		$retour.="var self=this;\n";
1140
-		if($hasLoader===true){
1140
+		if ($hasLoader===true) {
1141 1141
 			$this->addLoading($retour, $responseElement);
1142 1142
 		}
1143 1143
 		$retour.="$.post(url,params).done(function( data ) {\n";
@@ -1164,7 +1164,7 @@  discard block
 block discarded – undo
1164 1164
 	 * @param string $responseElement
1165 1165
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true)
1166 1166
 	 */
1167
-	public function _getOn($event,$element, $url, $params="{}", $responseElement="", $parameters=array()) {
1167
+	public function _getOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) {
1168 1168
 		$preventDefault=true;
1169 1169
 		$stopPropagation=true;
1170 1170
 		$jsCallback=null;
@@ -1172,7 +1172,7 @@  discard block
 block discarded – undo
1172 1172
 		$hasLoader=true;
1173 1173
 		$immediatly=true;
1174 1174
 		extract($parameters);
1175
-		return $this->_add_event($element, $this->_get($url, $params, $responseElement, $jsCallback, $attr,$hasLoader), $event, $preventDefault, $stopPropagation,$immediatly);
1175
+		return $this->_add_event($element, $this->_get($url, $params, $responseElement, $jsCallback, $attr, $hasLoader), $event, $preventDefault, $stopPropagation, $immediatly);
1176 1176
 	}
1177 1177
 
1178 1178
 	/**
@@ -1185,7 +1185,7 @@  discard block
 block discarded – undo
1185 1185
 	 * @param string $responseElement
1186 1186
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true)
1187 1187
 	 */
1188
-	public function _postOn($event,$element, $url, $params="{}", $responseElement="", $parameters=array()) {
1188
+	public function _postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) {
1189 1189
 		$preventDefault=true;
1190 1190
 		$stopPropagation=true;
1191 1191
 		$jsCallback=null;
@@ -1193,7 +1193,7 @@  discard block
 block discarded – undo
1193 1193
 		$hasLoader=true;
1194 1194
 		$immediatly=true;
1195 1195
 		extract($parameters);
1196
-		return $this->_add_event($element, $this->_post($url, $params, $responseElement, $jsCallback, $attr,$hasLoader), $event, $preventDefault, $stopPropagation,$immediatly);
1196
+		return $this->_add_event($element, $this->_post($url, $params, $responseElement, $jsCallback, $attr, $hasLoader), $event, $preventDefault, $stopPropagation, $immediatly);
1197 1197
 	}
1198 1198
 
1199 1199
 	/**
@@ -1206,7 +1206,7 @@  discard block
 block discarded – undo
1206 1206
 	 * @param string $responseElement
1207 1207
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"validation"=>false,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true)
1208 1208
 	 */
1209
-	public function _postFormOn($event,$element, $url, $form, $responseElement="", $parameters=array()) {
1209
+	public function _postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) {
1210 1210
 		$preventDefault=true;
1211 1211
 		$stopPropagation=true;
1212 1212
 		$validation=false;
@@ -1215,7 +1215,7 @@  discard block
 block discarded – undo
1215 1215
 		$hasLoader=true;
1216 1216
 		$immediatly=true;
1217 1217
 		extract($parameters);
1218
-		return $this->_add_event($element, $this->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr,$hasLoader), $event, $preventDefault, $stopPropagation,$immediatly);
1218
+		return $this->_add_event($element, $this->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader), $event, $preventDefault, $stopPropagation, $immediatly);
1219 1219
 	}
1220 1220
 
1221 1221
 	/**
@@ -1251,8 +1251,8 @@  discard block
 block discarded – undo
1251 1251
 	 * @param boolean $immediatly
1252 1252
 	 * @return string
1253 1253
 	 */
1254
-	public function _doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param="", $preventDefault=false, $stopPropagation=false, $jsCallback="",$immediatly=true) {
1255
-		return $this->_add_event($element, $this->_doJQuery($elementToModify, $jqueryCall, $param, $jsCallback), $event, $preventDefault, $stopPropagation,$immediatly);
1254
+	public function _doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param="", $preventDefault=false, $stopPropagation=false, $jsCallback="", $immediatly=true) {
1255
+		return $this->_add_event($element, $this->_doJQuery($elementToModify, $jqueryCall, $param, $jsCallback), $event, $preventDefault, $stopPropagation, $immediatly);
1256 1256
 	}
1257 1257
 
1258 1258
 	/**
@@ -1278,8 +1278,8 @@  discard block
 block discarded – undo
1278 1278
 	 * @param boolean $immediatly
1279 1279
 	 * @return String
1280 1280
 	 */
1281
-	public function _execOn($element, $event, $js, $preventDefault=false, $stopPropagation=false,$immediatly=true) {
1282
-		return $this->_add_event($element, $this->_exec($js), $event, $preventDefault, $stopPropagation,$immediatly);
1281
+	public function _execOn($element, $event, $js, $preventDefault=false, $stopPropagation=false, $immediatly=true) {
1282
+		return $this->_add_event($element, $this->_exec($js), $event, $preventDefault, $stopPropagation, $immediatly);
1283 1283
 	}
1284 1284
 }
1285 1285
 /* End of file Jquery.php */
Please login to merge, or discard this patch.
Ajax/JsUtils.php 1 patch
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 
46 46
 	protected function _setDi($di) {
47 47
 		$this->_di=$di;
48
-		if ($this->js!=null&&$di!=null)
48
+		if ($this->js!=null && $di!=null)
49 49
 			$this->js->setDi($di);
50 50
 	}
51 51
 
@@ -120,17 +120,17 @@  discard block
 block discarded – undo
120 120
 	}
121 121
 
122 122
 	public function __construct($params=array()) {
123
-		$defaults=array (
123
+		$defaults=array(
124 124
 				'driver' => 'Jquery'
125 125
 		);
126
-		foreach ( $defaults as $key => $val ) {
127
-			if (isset($params[$key])&&$params[$key]!=="") {
126
+		foreach ($defaults as $key => $val) {
127
+			if (isset($params[$key]) && $params[$key]!=="") {
128 128
 				$defaults[$key]=$params[$key];
129 129
 			}
130 130
 		}
131 131
 		extract($defaults);
132 132
 		$this->js=new Jquery();
133
-		$this->cdns=array ();
133
+		$this->cdns=array();
134 134
 	}
135 135
 
136 136
 	public function addToCompile($jsScript) {
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 	 * @return string
383 383
 	 */
384 384
 	public function addClass($element='this', $class='', $immediatly=false) {
385
-		return $this->js->_genericCallValue('addClass',$element, $class, $immediatly);
385
+		return $this->js->_genericCallValue('addClass', $element, $class, $immediatly);
386 386
 	}
387 387
 	
388 388
 	/**
@@ -392,8 +392,8 @@  discard block
 block discarded – undo
392 392
 	 * @param boolean $immediatly defers the execution if set to false
393 393
 	 * @return string
394 394
 	 */
395
-	public function after($to, $element, $immediatly=false){
396
-		return $this->js->_genericCallElement('after',$to, $element, $immediatly);
395
+	public function after($to, $element, $immediatly=false) {
396
+		return $this->js->_genericCallElement('after', $to, $element, $immediatly);
397 397
 	}
398 398
 	
399 399
 	/**
@@ -403,8 +403,8 @@  discard block
 block discarded – undo
403 403
 	 * @param boolean $immediatly defers the execution if set to false
404 404
 	 * @return string
405 405
 	 */
406
-	public function before($to, $element, $immediatly=false){
407
-		return $this->js->_genericCallElement('before',$to, $element, $immediatly);
406
+	public function before($to, $element, $immediatly=false) {
407
+		return $this->js->_genericCallElement('before', $to, $element, $immediatly);
408 408
 	}
409 409
 	
410 410
 	/**
@@ -424,8 +424,8 @@  discard block
 block discarded – undo
424 424
 	 * @param string $value
425 425
 	 * @param boolean $immediatly defers the execution if set to false
426 426
 	 */
427
-	public function val($element='this',$value='',$immediatly=false){
428
-		return $this->js->_genericCallValue('val',$element,$value,$immediatly);
427
+	public function val($element='this', $value='', $immediatly=false) {
428
+		return $this->js->_genericCallValue('val', $element, $value, $immediatly);
429 429
 	}
430 430
 
431 431
 	/**
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
 	 * @param boolean $immediatly defers the execution if set to false
436 436
 	 */
437 437
 	public function html($element='this', $value='', $immediatly=false) {
438
-		return $this->js->_genericCallValue('html',$element, $value, $immediatly);
438
+		return $this->js->_genericCallValue('html', $element, $value, $immediatly);
439 439
 	}
440 440
 	// --------------------------------------------------------------------
441 441
 	/**
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
 	 * @return string
461 461
 	 */
462 462
 	public function append($to, $element, $immediatly=false) {
463
-		return $this->js->_genericCallElement('append',$to, $element, $immediatly);
463
+		return $this->js->_genericCallElement('append', $to, $element, $immediatly);
464 464
 	}
465 465
 
466 466
 	/**
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
 	 * @return string
472 472
 	 */
473 473
 	public function prepend($to, $element, $immediatly=false) {
474
-		return $this->js->_genericCallElement('prepend',$to, $element, $immediatly);
474
+		return $this->js->_genericCallElement('prepend', $to, $element, $immediatly);
475 475
 	}
476 476
 	// --------------------------------------------------------------------
477 477
 	/**
@@ -522,7 +522,7 @@  discard block
 block discarded – undo
522 522
 	 * @return string
523 523
 	 */
524 524
 	public function removeClass($element='this', $class='', $immediatly=false) {
525
-		return $this->js->_genericCall('removeClass',$element, $class, $immediatly);
525
+		return $this->js->_genericCall('removeClass', $element, $class, $immediatly);
526 526
 	}
527 527
 	// --------------------------------------------------------------------
528 528
 	/**
@@ -583,7 +583,7 @@  discard block
 block discarded – undo
583 583
 	 * @return string
584 584
 	 */
585 585
 	public function toggleClass($element='this', $class='', $immediatly=false) {
586
-		return $this->js->_genericCallValue('toggleClass',$element, $class, $immediatly);
586
+		return $this->js->_genericCallValue('toggleClass', $element, $class, $immediatly);
587 587
 	}
588 588
 
589 589
 	/**
@@ -630,7 +630,7 @@  discard block
 block discarded – undo
630 630
 	 */
631 631
 	public function compile($view=NULL, $view_var='script_foot', $script_tags=TRUE) {
632 632
 		$bs=$this->_bootstrap;
633
-		if (isset($bs)&&isset($view)) {
633
+		if (isset($bs) && isset($view)) {
634 634
 			$bs->compileHtml($this, $view);
635 635
 		}
636 636
 		return $this->js->_compile($view, $view_var, $script_tags);
@@ -710,27 +710,27 @@  discard block
 block discarded – undo
710 710
 				$json_result=$result->result_array();
711 711
 			} elseif (is_array($result)) {
712 712
 				$json_result=$result;
713
-			} else {
713
+			}else {
714 714
 				return $this->_prep_args($result);
715 715
 			}
716
-		} else {
716
+		}else {
717 717
 			return 'null';
718 718
 		}
719 719
 		return $this->_create_json($json_result, $match_array_type);
720 720
 	}
721 721
 
722 722
 	private function _create_json($json_result, $match_array_type) {
723
-		$json=array ();
723
+		$json=array();
724 724
 		$_is_assoc=TRUE;
725
-		if (!is_array($json_result)&&empty($json_result)) {
725
+		if (!is_array($json_result) && empty($json_result)) {
726 726
 			show_error("Generate JSON Failed - Illegal key, value pair.");
727 727
 		} elseif ($match_array_type) {
728 728
 			$_is_assoc=$this->_is_associative_array($json_result);
729 729
 		}
730
-		foreach ( $json_result as $k => $v ) {
730
+		foreach ($json_result as $k => $v) {
731 731
 			if ($_is_assoc) {
732 732
 				$json[]=$this->_prep_args($k, TRUE).':'.$this->generate_json($v, $match_array_type);
733
-			} else {
733
+			}else {
734 734
 				$json[]=$this->generate_json($v, $match_array_type);
735 735
 			}
736 736
 		}
@@ -745,7 +745,7 @@  discard block
 block discarded – undo
745 745
 	 * @return type
746 746
 	 */
747 747
 	public function _is_associative_array($arr) {
748
-		foreach ( array_keys($arr) as $key => $val ) {
748
+		foreach (array_keys($arr) as $key => $val) {
749 749
 			if ($key!==$val) {
750 750
 				return TRUE;
751 751
 			}
@@ -764,11 +764,11 @@  discard block
 block discarded – undo
764 764
 			return 'null';
765 765
 		} elseif (is_bool($result)) {
766 766
 			return ($result===TRUE) ? 'true' : 'false';
767
-		} elseif (is_string($result)||$is_key) {
768
-			return '"'.str_replace(array (
769
-					'\\',"\t","\n","\r",'"','/'
770
-			), array (
771
-					'\\\\','\\t','\\n',"\\r",'\"','\/'
767
+		} elseif (is_string($result) || $is_key) {
768
+			return '"'.str_replace(array(
769
+					'\\', "\t", "\n", "\r", '"', '/'
770
+			), array(
771
+					'\\\\', '\\t', '\\n', "\\r", '\"', '\/'
772 772
 			), $result).'"';
773 773
 		} elseif (is_scalar($result)) {
774 774
 			return $result;
@@ -783,8 +783,8 @@  discard block
 block discarded – undo
783 783
 	 * @param string $jsCallback javascript code to execute after the request
784 784
 	 * @param boolean $hasLoader true for showing ajax loader. default : true
785 785
 	 */
786
-	public function get($url, $responseElement="", $params="{}", $jsCallback=NULL,$hasLoader=true) {
787
-		return $this->js->_get($url, $params, $responseElement, $jsCallback, NULL, $hasLoader,true);
786
+	public function get($url, $responseElement="", $params="{}", $jsCallback=NULL, $hasLoader=true) {
787
+		return $this->js->_get($url, $params, $responseElement, $jsCallback, NULL, $hasLoader, true);
788 788
 	}
789 789
 
790 790
 	/**
@@ -795,8 +795,8 @@  discard block
 block discarded – undo
795 795
 	 * @param string $jsCallback javascript code to execute after the request
796 796
 	 * @param boolean $immediatly
797 797
 	 */
798
-	public function json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document",$immediatly=false) {
799
-		return $this->js->_json($url, $method, $params, $jsCallback, $attr, $context,$immediatly);
798
+	public function json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document", $immediatly=false) {
799
+		return $this->js->_json($url, $method, $params, $jsCallback, $attr, $context, $immediatly);
800 800
 	}
801 801
 
802 802
 	/**
@@ -806,8 +806,8 @@  discard block
 block discarded – undo
806 806
 	 * @param string $url the request address
807 807
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true)
808 808
 	 */
809
-	public function jsonOn($event,$element, $url,$parameters=array()) {
810
-		return $this->js->_jsonOn($event, $element, $url,$parameters);
809
+	public function jsonOn($event, $element, $url, $parameters=array()) {
810
+		return $this->js->_jsonOn($event, $element, $url, $parameters);
811 811
 	}
812 812
 	
813 813
 	/**
@@ -851,8 +851,8 @@  discard block
 block discarded – undo
851 851
 	 * @param string $url the request url
852 852
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true)
853 853
 	 */
854
-	public function jsonArrayOn($event,$element,$maskSelector, $url,$parameters=array()) {
855
-		return $this->js->_jsonArrayOn($event,$element,$maskSelector, $url, $parameters);
854
+	public function jsonArrayOn($event, $element, $maskSelector, $url, $parameters=array()) {
855
+		return $this->js->_jsonArrayOn($event, $element, $maskSelector, $url, $parameters);
856 856
 	}
857 857
 
858 858
 	/**
@@ -864,7 +864,7 @@  discard block
 block discarded – undo
864 864
 	 * @param string $jsCallback javascript code to execute after the request
865 865
 	 * @param string $attr the html attribute added to the request
866 866
 	 */
867
-	public function getDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL,$attr="id") {
867
+	public function getDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id") {
868 868
 		return $this->js->_get($url, $params, $responseElement, $jsCallback, $attr, false);
869 869
 	}
870 870
 
@@ -902,8 +902,8 @@  discard block
 block discarded – undo
902 902
 	 * @param string $jsCallback javascript code to execute after the request
903 903
 	 * @param boolean $hasLoader true for showing ajax loader. default : true
904 904
 	 */
905
-	public function post($url, $responseElement="", $params="{}", $jsCallback=NULL,$hasLoader=true) {
906
-		return $this->js->_post($url, $params, $responseElement, $jsCallback, NULL, $hasLoader,true);
905
+	public function post($url, $responseElement="", $params="{}", $jsCallback=NULL, $hasLoader=true) {
906
+		return $this->js->_post($url, $params, $responseElement, $jsCallback, NULL, $hasLoader, true);
907 907
 	}
908 908
 
909 909
 	/**
@@ -916,8 +916,8 @@  discard block
 block discarded – undo
916 916
 	 * @param string $jsCallback javascript code to execute after the request
917 917
 	 * @param boolean $hasLoader true for showing ajax loader. default : true
918 918
 	 */
919
-	public function postDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id",$hasLoader=true) {
920
-		return $this->js->_post($url, $params, $responseElement, $jsCallback, $attr, $hasLoader,false);
919
+	public function postDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id", $hasLoader=true) {
920
+		return $this->js->_post($url, $params, $responseElement, $jsCallback, $attr, $hasLoader, false);
921 921
 	}
922 922
 
923 923
 	/**
@@ -931,7 +931,7 @@  discard block
 block discarded – undo
931 931
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true)
932 932
 	 */
933 933
 	public function postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) {
934
-		return $this->js->_postOn($event, $element,  $url, $params, $responseElement, $parameters);
934
+		return $this->js->_postOn($event, $element, $url, $params, $responseElement, $parameters);
935 935
 	}
936 936
 
937 937
 	/**
@@ -955,8 +955,8 @@  discard block
 block discarded – undo
955 955
 	 * @param string $jsCallback javascript code to execute after the request
956 956
 	 * @param boolean $hasLoader true for showing ajax loader. default : true
957 957
 	 */
958
-	public function postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL,$hasLoader=true) {
959
-		return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, NULL, $hasLoader,true);
958
+	public function postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $hasLoader=true) {
959
+		return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, NULL, $hasLoader, true);
960 960
 	}
961 961
 
962 962
 	/**
@@ -969,8 +969,8 @@  discard block
 block discarded – undo
969 969
 	 * @param string $attr the html attribute added to the request
970 970
 	 * @param boolean $hasLoader true for showing ajax loader. default : true
971 971
 	 */
972
-	public function postFormDeferred($url, $form, $responseElement, $validation=false, $jsCallback=NULL,$attr="id",$hasLoader=true) {
973
-		return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader,false);
972
+	public function postFormDeferred($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $attr="id", $hasLoader=true) {
973
+		return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader, false);
974 974
 	}
975 975
 
976 976
 	/**
@@ -984,7 +984,7 @@  discard block
 block discarded – undo
984 984
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"validation"=>false,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true)
985 985
 	 */
986 986
 	public function postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) {
987
-		return $this->js->_postFormOn($event,$element, $url, $form, $responseElement, $parameters);
987
+		return $this->js->_postFormOn($event, $element, $url, $form, $responseElement, $parameters);
988 988
 	}
989 989
 
990 990
 	/**
@@ -1039,7 +1039,7 @@  discard block
 block discarded – undo
1039 1039
 		$preventDefault=false;
1040 1040
 		$immediatly=true;
1041 1041
 		extract($parameters);
1042
-		return $this->js->_doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param, $preventDefault, $stopPropagation, $jsCallback,$immediatly);
1042
+		return $this->js->_doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param, $preventDefault, $stopPropagation, $jsCallback, $immediatly);
1043 1043
 	}
1044 1044
 
1045 1045
 	/**
@@ -1066,7 +1066,7 @@  discard block
 block discarded – undo
1066 1066
 		$preventDefault=false;
1067 1067
 		$immediatly=true;
1068 1068
 		extract($parameters);
1069
-		$script=$this->js->_execOn($element, $event, $js, $preventDefault, $stopPropagation,$immediatly);
1069
+		$script=$this->js->_execOn($element, $event, $js, $preventDefault, $stopPropagation, $immediatly);
1070 1070
 		return $script;
1071 1071
 	}
1072 1072
 
@@ -1076,7 +1076,7 @@  discard block
 block discarded – undo
1076 1076
 
1077 1077
 	public function setCDNs($cdns) {
1078 1078
 		if (is_array($cdns)===false) {
1079
-			$cdns=array (
1079
+			$cdns=array(
1080 1080
 					$cdns
1081 1081
 			);
1082 1082
 		}
@@ -1087,9 +1087,9 @@  discard block
 block discarded – undo
1087 1087
 		$hasJQuery=false;
1088 1088
 		$hasJQueryUI=false;
1089 1089
 		$hasBootstrap=false;
1090
-		$result=array ();
1091
-		foreach ( $this->cdns as $cdn ) {
1092
-			switch(get_class($cdn)) {
1090
+		$result=array();
1091
+		foreach ($this->cdns as $cdn) {
1092
+			switch (get_class($cdn)) {
1093 1093
 				case "Ajax\lib\CDNJQuery":
1094 1094
 					$hasJQuery=true;
1095 1095
 					$result[0]=$cdn;
@@ -1107,10 +1107,10 @@  discard block
 block discarded – undo
1107 1107
 		if ($hasJQuery===false) {
1108 1108
 			$result[0]=new CDNJQuery("x");
1109 1109
 		}
1110
-		if ($hasJQueryUI===false&&isset($this->_ui)) {
1110
+		if ($hasJQueryUI===false && isset($this->_ui)) {
1111 1111
 			$result[1]=new CDNGuiGen("x", $template);
1112 1112
 		}
1113
-		if ($hasBootstrap===false&&isset($this->_bootstrap)) {
1113
+		if ($hasBootstrap===false && isset($this->_bootstrap)) {
1114 1114
 			$result[2]=new CDNBootstrap("x");
1115 1115
 		}
1116 1116
 		ksort($result);
@@ -1124,7 +1124,7 @@  discard block
 block discarded – undo
1124 1124
 			$this->_setDi($di);
1125 1125
 		}
1126 1126
 	}
1127
-} else {
1127
+}else {
1128 1128
 	class JsUtils extends _JsUtils {
1129 1129
 
1130 1130
 		public function setDi(DiInterface $di) {
Please login to merge, or discard this patch.