Completed
Push — master ( 9e0835...2461e8 )
by Jean-Christophe
03:27
created
Ajax/semantic/html/elements/HtmlSegmentGroups.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -6,20 +6,20 @@  discard block
 block discarded – undo
6 6
 use Ajax\semantic\html\base\HtmlSemCollection;
7 7
 use Ajax\semantic\html\base\constants\Sens;
8 8
 
9
-class HtmlSegmentGroups extends HtmlSemCollection{
9
+class HtmlSegmentGroups extends HtmlSemCollection {
10 10
 
11 11
 
12
-	public function __construct( $identifier, $items=array()){
13
-		parent::__construct( $identifier, "div","ui segments");
12
+	public function __construct($identifier, $items=array()) {
13
+		parent::__construct($identifier, "div", "ui segments");
14 14
 		$this->addItems($items);
15 15
 	}
16 16
 
17 17
 
18
-	protected function createItem($value){
19
-		return new HtmlSegment("segment-".$this->count(),$value);
18
+	protected function createItem($value) {
19
+		return new HtmlSegment("segment-".$this->count(), $value);
20 20
 	}
21 21
 
22
-	protected function createCondition($value){
22
+	protected function createCondition($value) {
23 23
 		return !($value instanceof HtmlSegment);
24 24
 	}
25 25
 
@@ -28,16 +28,16 @@  discard block
 block discarded – undo
28 28
 	 * @param string $type one of "raised","stacked","piled" default : ""
29 29
 	 * @return \Ajax\semantic\html\elements\HtmlSegmentGroups
30 30
 	 */
31
-	public function setType($type){
31
+	public function setType($type) {
32 32
 		return $this->addToPropertyCtrl("class", $type, SegmentType::getConstants());
33 33
 	}
34 34
 
35
-	public function setSens($sens=Sens::VERTICAL){
35
+	public function setSens($sens=Sens::VERTICAL) {
36 36
 		return $this->addToPropertyCtrl("class", $sens, Sens::getConstants());
37 37
 	}
38 38
 
39
-	public static function group($identifier,$items=array(),$type="",$sens=Sens::VERTICAL){
40
-		$group=new HtmlSegmentGroups($identifier,$items);
39
+	public static function group($identifier, $items=array(), $type="", $sens=Sens::VERTICAL) {
40
+		$group=new HtmlSegmentGroups($identifier, $items);
41 41
 		$group->setSens($sens);
42 42
 		return $group->setType($type);
43 43
 	}
Please login to merge, or discard this patch.
Ajax/common/html/BaseHtml.php 3 patches
Braces   +26 added lines, -18 removed lines patch added patch discarded remove patch
@@ -50,16 +50,18 @@  discard block
 block discarded – undo
50 50
 	}
51 51
 
52 52
 	public function getProperty($name) {
53
-		if (array_key_exists($name, $this->properties))
54
-			return $this->properties [$name];
53
+		if (array_key_exists($name, $this->properties)) {
54
+					return $this->properties [$name];
55
+		}
55 56
 	}
56 57
 
57 58
 	public function addToProperty($name, $value, $separator=" ") {
58 59
 		$v=@$this->properties[$name];
59
-		if (isset($v)&&$v!=="")
60
-			$v=$v.$separator.$value;
61
-		else
62
-			$v=$value;
60
+		if (isset($v)&&$v!=="") {
61
+					$v=$v.$separator.$value;
62
+		} else {
63
+					$v=$value;
64
+		}
63 65
 
64 66
 		return $this->setProperty($name, $v);
65 67
 	}
@@ -117,8 +119,9 @@  discard block
 block discarded – undo
117 119
 	}
118 120
 
119 121
 	protected function setPropertyCtrl($name, $value, $typeCtrl) {
120
-		if ($this->ctrl($name, $value, $typeCtrl)===true)
121
-			return $this->setProperty($name, $value);
122
+		if ($this->ctrl($name, $value, $typeCtrl)===true) {
123
+					return $this->setProperty($name, $value);
124
+		}
122 125
 		return $this;
123 126
 	}
124 127
 
@@ -143,8 +146,9 @@  discard block
 block discarded – undo
143 146
 	}
144 147
 
145 148
 	protected function removeProperty($name){
146
-		if(\array_key_exists($name, $this->properties))
147
-			unset($this->properties[$name]);
149
+		if(\array_key_exists($name, $this->properties)) {
150
+					unset($this->properties[$name]);
151
+		}
148 152
 		return $this;
149 153
 	}
150 154
 
@@ -164,8 +168,9 @@  discard block
 block discarded – undo
164 168
 	}
165 169
 
166 170
 	protected function addToPropertyUnique($name, $value, $typeCtrl) {
167
-		if (@class_exists($typeCtrl, true))
168
-			$typeCtrl=$typeCtrl::getConstants();
171
+		if (@class_exists($typeCtrl, true)) {
172
+					$typeCtrl=$typeCtrl::getConstants();
173
+		}
169 174
 		if (is_array($typeCtrl)) {
170 175
 			$this->removeOldValues($this->properties [$name], $typeCtrl);
171 176
 		}
@@ -348,15 +353,18 @@  discard block
 block discarded – undo
348 353
 			$flag=false;
349 354
 			$index=0;
350 355
 			while ( !$flag&&$index<sizeof($elements) ) {
351
-				if ($elements [$index] instanceof BaseHtml)
352
-					$flag=($elements [$index]->getIdentifier()===$identifier);
356
+				if ($elements [$index] instanceof BaseHtml) {
357
+									$flag=($elements [$index]->getIdentifier()===$identifier);
358
+				}
353 359
 				$index++;
354 360
 			}
355
-			if ($flag===true)
356
-				return $elements [$index-1];
361
+			if ($flag===true) {
362
+							return $elements [$index-1];
363
+			}
357 364
 		} elseif ($elements instanceof BaseHtml) {
358
-			if ($elements->getIdentifier()===$identifier)
359
-				return $elements;
365
+			if ($elements->getIdentifier()===$identifier) {
366
+							return $elements;
367
+			}
360 368
 		}
361 369
 		return null;
362 370
 	}
Please login to merge, or discard this patch.
Doc Comments   +36 added lines patch added patch discarded remove patch
@@ -109,6 +109,10 @@  discard block
 block discarded – undo
109 109
 		return true;
110 110
 	}
111 111
 
112
+	/**
113
+	 * @param string $propertyName
114
+	 * @param string $value
115
+	 */
112 116
 	protected function propertyContains($propertyName,$value){
113 117
 		$values=$this->getProperty($propertyName);
114 118
 		if(isset($values)){
@@ -138,17 +142,28 @@  discard block
 block discarded – undo
138 142
 		return $this;
139 143
 	}
140 144
 
145
+	/**
146
+	 * @param string $name
147
+	 * @param string $value
148
+	 */
141 149
 	protected function removePropertyValue($name,$value){
142 150
 		$this->properties[$name]=\str_replace($value, "", $this->properties[$name]);
143 151
 		return $this;
144 152
 	}
145 153
 
154
+	/**
155
+	 * @param string $name
156
+	 */
146 157
 	protected function removeProperty($name){
147 158
 		if(\array_key_exists($name, $this->properties))
148 159
 			unset($this->properties[$name]);
149 160
 		return $this;
150 161
 	}
151 162
 
163
+	/**
164
+	 * @param string $name
165
+	 * @param string[] $typeCtrl
166
+	 */
152 167
 	protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") {
153 168
 		if ($this->ctrl($name, $value, $typeCtrl)===true) {
154 169
 			if (is_array($typeCtrl)) {
@@ -173,6 +188,9 @@  discard block
 block discarded – undo
173 188
 		return $this->addToProperty($name, $value);
174 189
 	}
175 190
 
191
+	/**
192
+	 * @param string $name
193
+	 */
176 194
 	public function addToPropertyCtrl($name, $value, $typeCtrl) {
177 195
 		// if($this->ctrl($name, $value, $typeCtrl)===true){
178 196
 		return $this->addToPropertyUnique($name, $value, $typeCtrl);
@@ -312,6 +330,9 @@  discard block
 block discarded – undo
312 330
 		}
313 331
 	}
314 332
 
333
+	/**
334
+	 * @param string $operation
335
+	 */
315 336
 	public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) {
316 337
 		$params=array (
317 338
 				"url" => $url,
@@ -322,14 +343,23 @@  discard block
 block discarded – undo
322 343
 		return $this;
323 344
 	}
324 345
 
346
+	/**
347
+	 * @param string $event
348
+	 */
325 349
 	public function getOn($event, $url, $responseElement="", $parameters=array()) {
326 350
 		return $this->_ajaxOn("get", $event, $url, $responseElement, $parameters);
327 351
 	}
328 352
 
353
+	/**
354
+	 * @param string $url
355
+	 */
329 356
 	public function getOnClick($url, $responseElement="", $parameters=array()) {
330 357
 		return $this->getOn("click", $url, $responseElement, $parameters);
331 358
 	}
332 359
 
360
+	/**
361
+	 * @param string $event
362
+	 */
333 363
 	public function postOn($event, $url, $params="{}", $responseElement="", $parameters=array()) {
334 364
 		$parameters ["params"]=$params;
335 365
 		return $this->_ajaxOn("post", $event, $url, $responseElement, $parameters);
@@ -339,6 +369,9 @@  discard block
 block discarded – undo
339 369
 		return $this->postOn("click", $url, $params, $responseElement, $parameters);
340 370
 	}
341 371
 
372
+	/**
373
+	 * @param string $event
374
+	 */
342 375
 	public function postFormOn($event, $url, $form, $responseElement="", $parameters=array()) {
343 376
 		$parameters ["form"]=$form;
344 377
 		return $this->_ajaxOn("postForm", $event, $url, $responseElement, $parameters);
@@ -388,6 +421,9 @@  discard block
 block discarded – undo
388 421
 		return $value;
389 422
 	}
390 423
 
424
+	/**
425
+	 * @param string $jqueryCall
426
+	 */
391 427
 	public function jsDoJquery($jqueryCall, $param=""){
392 428
 		return "$('#".$this->identifier."').".$jqueryCall."(".$this->_prep_value($param).");";
393 429
 	}
Please login to merge, or discard this patch.
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
 abstract class BaseHtml extends BaseWidget {
18 18
 	protected $_template;
19 19
 	protected $tagName;
20
-	protected $properties=array ();
21
-	protected $_events=array ();
20
+	protected $properties=array();
21
+	protected $_events=array();
22 22
 	protected $_wrapBefore=array();
23 23
 	protected $_wrapAfter=array();
24 24
 	protected $_bsComponent;
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
 	public function addToProperty($name, $value, $separator=" ") {
59 59
 		$v=@$this->properties[$name];
60
-		if (isset($v)&&$v!=="")
60
+		if (isset($v) && $v!=="")
61 61
 			$v=$v.$separator.$value;
62 62
 		else
63 63
 			$v=$value;
@@ -72,11 +72,11 @@  discard block
 block discarded – undo
72 72
 
73 73
 	public function compile(JsUtils $js=NULL, View $view=NULL) {
74 74
 		$result=$this->getTemplate($js);
75
-		foreach ( $this as $key => $value ) {
76
-			if (PhalconUtils::startsWith($key, "_")===false&&$key!=="events") {
75
+		foreach ($this as $key => $value) {
76
+			if (PhalconUtils::startsWith($key, "_")===false && $key!=="events") {
77 77
 				if (is_array($value)) {
78 78
 					$v=PropertyWrapper::wrap($value, $js);
79
-				} else {
79
+				}else {
80 80
 					$v=$value;
81 81
 				}
82 82
 				$result=str_ireplace("%".$key."%", $v, $result);
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 		if (isset($view)===true) {
89 89
 			$controls=$view->getVar("q");
90 90
 			if (isset($controls)===false) {
91
-				$controls=array ();
91
+				$controls=array();
92 92
 			}
93 93
 			$controls [$this->identifier]=$result;
94 94
 			$view->setVar("q", $controls);
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 			if (array_search($value, $typeCtrl)===false) {
102 102
 				throw new \Exception("La valeur passée a propriété `".$name."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}");
103 103
 			}
104
-		} else {
104
+		}else {
105 105
 			if (!$typeCtrl($value)) {
106 106
 				throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$name);
107 107
 			}
@@ -109,9 +109,9 @@  discard block
 block discarded – undo
109 109
 		return true;
110 110
 	}
111 111
 
112
-	protected function propertyContains($propertyName,$value){
112
+	protected function propertyContains($propertyName, $value) {
113 113
 		$values=$this->getProperty($propertyName);
114
-		if(isset($values)){
114
+		if (isset($values)) {
115 115
 			return JString::contains($values, $value);
116 116
 		}
117 117
 		return false;
@@ -138,13 +138,13 @@  discard block
 block discarded – undo
138 138
 		return $this;
139 139
 	}
140 140
 
141
-	protected function removePropertyValue($name,$value){
141
+	protected function removePropertyValue($name, $value) {
142 142
 		$this->properties[$name]=\str_replace($value, "", $this->properties[$name]);
143 143
 		return $this;
144 144
 	}
145 145
 
146
-	protected function removeProperty($name){
147
-		if(\array_key_exists($name, $this->properties))
146
+	protected function removeProperty($name) {
147
+		if (\array_key_exists($name, $this->properties))
148 148
 			unset($this->properties[$name]);
149 149
 		return $this;
150 150
 	}
@@ -201,28 +201,28 @@  discard block
 block discarded – undo
201 201
 	}
202 202
 
203 203
 	public function fromArray($array) {
204
-		foreach ( $this as $key => $value ) {
204
+		foreach ($this as $key => $value) {
205 205
 			if (array_key_exists($key, $array) && !PhalconUtils::startsWith($key, "_")) {
206 206
 					$setter="set".ucfirst($key);
207 207
 					$this->$setter($array [$key]);
208 208
 				unset($array [$key]);
209 209
 			}
210 210
 		}
211
-		foreach ( $array as $key => $value ) {
211
+		foreach ($array as $key => $value) {
212 212
 			if (method_exists($this, $key)) {
213 213
 				try {
214 214
 					$this->$key($value);
215 215
 					unset($array [$key]);
216
-				} catch ( \Exception $e ) {
216
+				} catch (\Exception $e) {
217 217
 					// Nothing to do
218 218
 				}
219
-			} else {
219
+			}else {
220 220
 				$setter="set".ucfirst($key);
221 221
 				if (method_exists($this, $setter)) {
222 222
 					try {
223 223
 						$this->$setter($value);
224 224
 						unset($array [$key]);
225
-					} catch ( \Exception $e ) {
225
+					} catch (\Exception $e) {
226 226
 						// Nothing to do
227 227
 					}
228 228
 				}
@@ -231,21 +231,21 @@  discard block
 block discarded – undo
231 231
 		return $array;
232 232
 	}
233 233
 
234
-	public function fromDatabaseObjects($objects,$function) {
235
-		if(isset($objects)){
236
-			foreach ($objects as $object){
237
-				$this->fromDatabaseObject($object,$function);
234
+	public function fromDatabaseObjects($objects, $function) {
235
+		if (isset($objects)) {
236
+			foreach ($objects as $object) {
237
+				$this->fromDatabaseObject($object, $function);
238 238
 			}
239 239
 		}
240 240
 		return $this;
241 241
 	}
242 242
 
243
-	public function fromDatabaseObject($object,$function){
243
+	public function fromDatabaseObject($object, $function) {
244 244
 
245 245
 	}
246 246
 
247 247
 	public function wrap($before, $after="") {
248
-		if(isset($before)){
248
+		if (isset($before)) {
249 249
 			$this->_wrapBefore[]=$before;
250 250
 		}
251 251
 		$this->_wrapAfter[]=$after;
@@ -266,13 +266,13 @@  discard block
 block discarded – undo
266 266
 		if (array_key_exists($event, $this->_events)) {
267 267
 			if (is_array($this->_events [$event])) {
268 268
 				$this->_events [$event] []=$jsCode;
269
-			} else {
270
-				$this->_events [$event]=array (
269
+			}else {
270
+				$this->_events [$event]=array(
271 271
 						$this->_events [$event],
272 272
 						$jsCode
273 273
 				);
274 274
 			}
275
-		} else {
275
+		}else {
276 276
 			$this->_events [$event]=$jsCode;
277 277
 		}
278 278
 		return $this;
@@ -292,14 +292,14 @@  discard block
 block discarded – undo
292 292
 
293 293
 	public function addEventsOnRun(JsUtils $js) {
294 294
 		if (isset($this->_bsComponent)) {
295
-			foreach ( $this->_events as $event => $jsCode ) {
295
+			foreach ($this->_events as $event => $jsCode) {
296 296
 				$code=$jsCode;
297 297
 				if (is_array($jsCode)) {
298 298
 					$code="";
299
-					foreach ( $jsCode as $jsC ) {
299
+					foreach ($jsCode as $jsC) {
300 300
 						if ($jsC instanceof AjaxCall) {
301 301
 							$code.="\n".$jsC->compile($js);
302
-						} else {
302
+						}else {
303 303
 							$code.="\n".$jsC;
304 304
 						}
305 305
 					}
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
 	}
314 314
 
315 315
 	public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) {
316
-		$params=array (
316
+		$params=array(
317 317
 				"url" => $url,
318 318
 				"responseElement" => $responseElement
319 319
 		);
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
 		if (is_array($elements)) {
353 353
 			$flag=false;
354 354
 			$index=0;
355
-			while ( !$flag&&$index<sizeof($elements) ) {
355
+			while (!$flag && $index<sizeof($elements)) {
356 356
 				if ($elements [$index] instanceof BaseHtml)
357 357
 					$flag=($elements [$index]->getIdentifier()===$identifier);
358 358
 				$index++;
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
 		return null;
367 367
 	}
368 368
 
369
-	public function __toString(){
369
+	public function __toString() {
370 370
 		return $this->compile();
371 371
 	}
372 372
 
@@ -382,29 +382,29 @@  discard block
 block discarded – undo
382 382
 		if (is_array($value)) {
383 383
 			$value=implode(",", $value);
384 384
 		}
385
-		if (strrpos($value, 'this')===false&&strrpos($value, 'event')===false) {
385
+		if (strrpos($value, 'this')===false && strrpos($value, 'event')===false) {
386 386
 			$value='"'.$value.'"';
387 387
 		}
388 388
 		return $value;
389 389
 	}
390 390
 
391
-	public function jsDoJquery($jqueryCall, $param=""){
391
+	public function jsDoJquery($jqueryCall, $param="") {
392 392
 		return "$('#".$this->identifier."').".$jqueryCall."(".$this->_prep_value($param).");";
393 393
 	}
394 394
 
395
-	public function executeOnRun($jsCode){
395
+	public function executeOnRun($jsCode) {
396 396
 		return $this->_addEvent("execute", $jsCode);
397 397
 	}
398 398
 
399
-	public function jsHtml($content=""){
400
-		return $this->jsDoJquery("html",$content);
399
+	public function jsHtml($content="") {
400
+		return $this->jsDoJquery("html", $content);
401 401
 	}
402 402
 
403
-	public function jsShow(){
403
+	public function jsShow() {
404 404
 		return $this->jsDoJquery("show");
405 405
 	}
406 406
 
407
-	public function jsHide(){
407
+	public function jsHide() {
408 408
 		return $this->jsDoJquery("hide");
409 409
 	}
410 410
 
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlBreadcrumb.php 3 patches
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
  * @author jc
15 15
  * @version 1.001
16 16
  */
17
-class HtmlBreadcrumb extends HtmlSemNavElement{
17
+class HtmlBreadcrumb extends HtmlSemNavElement {
18 18
 	/**
19 19
 	 * @var integer the start index for href generation
20 20
 	 */
@@ -40,13 +40,13 @@  discard block
 block discarded – undo
40 40
 	 * @param boolean $autoActive sets the last element's class to <b>active</b> if true
41 41
 	 * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()}
42 42
 	 */
43
-	public function __construct( $identifier,$items=array(),$autoActive=true,$startIndex=0,$hrefFunction=NULL){
44
-		parent::__construct( $identifier, "div", "ui breadcrumb");
43
+	public function __construct($identifier, $items=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL) {
44
+		parent::__construct($identifier, "div", "ui breadcrumb");
45 45
 		$this->startIndex=$startIndex;
46 46
 		$this->autoActive=$autoActive;
47 47
 		$this->_contentSeparator="<div class='divider'> / </div>";
48
-		$this->_hrefFunction=function ($e){return $e->getContent();};
49
-		if(isset($hrefFunction)){
48
+		$this->_hrefFunction=function($e) {return $e->getContent(); };
49
+		if (isset($hrefFunction)) {
50 50
 			$this->_hrefFunction=$hrefFunction;
51 51
 		}
52 52
 		$this->addItems($items);
@@ -59,23 +59,23 @@  discard block
 block discarded – undo
59 59
 	 * @param string $attr the html attribute used to build the elements url
60 60
 	 * @return HtmlBreadcrumbs
61 61
 	 */
62
-	public function autoGetOnClick($targetSelector){
63
-		return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr));
62
+	public function autoGetOnClick($targetSelector) {
63
+		return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr));
64 64
 	}
65 65
 
66
-	public function contentAsString(){
67
-		if($this->autoActive){
66
+	public function contentAsString() {
67
+		if ($this->autoActive) {
68 68
 			$this->setActive();
69 69
 		}
70 70
 		return parent::contentAsString();
71 71
 	}
72 72
 
73
-	public function setActive($index=null){
74
-		if(!isset($index)){
73
+	public function setActive($index=null) {
74
+		if (!isset($index)) {
75 75
 			$index=sizeof($this->content)-1;
76 76
 		}
77 77
 		$activeItem=$this->content[$index];
78
-		$activeItem->addToProperty("class","active");
78
+		$activeItem->addToProperty("class", "active");
79 79
 		$activeItem->setTagName("div");
80 80
 	}
81 81
 
@@ -84,15 +84,15 @@  discard block
 block discarded – undo
84 84
 	 * @param Dispatcher $dispatcher the request dispatcher
85 85
 	 * @return \Ajax\bootstrap\html\HtmlBreadcrumbs
86 86
 	 */
87
-	public function fromDispatcher($dispatcher,$startIndex=0){
87
+	public function fromDispatcher($dispatcher, $startIndex=0) {
88 88
 		$this->startIndex=$startIndex;
89 89
 		$params=$dispatcher->getParams();
90 90
 		$action=$dispatcher->getActionName();
91 91
 		$items=array($dispatcher->getControllerName());
92
-		if(\sizeof($params)>0 || \strtolower($action)!="index" ){
92
+		if (\sizeof($params)>0 || \strtolower($action)!="index") {
93 93
 			$items[]=$action;
94
-			foreach ($params as $p){
95
-				if(\is_object($p)===false)
94
+			foreach ($params as $p) {
95
+				if (\is_object($p)===false)
96 96
 					$items[]=$p;
97 97
 			}
98 98
 		}
@@ -105,14 +105,14 @@  discard block
 block discarded – undo
105 105
 	 * @param string $separator
106 106
 	 * @return string
107 107
 	 */
108
-	public function getHref($index=null,$separator="/"){
109
-		if(!isset($index)){
108
+	public function getHref($index=null, $separator="/") {
109
+		if (!isset($index)) {
110 110
 			$index=sizeof($this->content);
111 111
 		}
112
-		if($this->absolutePaths===true){
112
+		if ($this->absolutePaths===true) {
113 113
 			return $this->_hrefFunction($this->content[$index]);
114
-		}else{
115
-			return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1));
114
+		}else {
115
+			return $this->root.implode($separator, array_slice(array_map(function($e) {return $this->_hrefFunction($e); }, $this->content), $this->startIndex, $index+1));
116 116
 		}
117 117
 	}
118 118
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 	 * @return \Ajax\bootstrap\html\HtmlBreadcrumbs
123 123
 	 */
124 124
 	public function setHrefFunction($_hrefFunction) {
125
-		$this->_hrefFunction = $_hrefFunction;
125
+		$this->_hrefFunction=$_hrefFunction;
126 126
 		return $this;
127 127
 	}
128 128
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 	}
133 133
 
134 134
 	public function setAutoActive($autoActive) {
135
-		$this->autoActive = $autoActive;
135
+		$this->autoActive=$autoActive;
136 136
 		return $this;
137 137
 	}
138 138
 
@@ -141,11 +141,11 @@  discard block
 block discarded – undo
141 141
 	 * @see \Ajax\bootstrap\html\BaseHtml::compile()
142 142
 	 */
143 143
 	public function compile(JsUtils $js=NULL, View $view=NULL) {
144
-		if($this->autoActive){
144
+		if ($this->autoActive) {
145 145
 			$this->setActive();
146 146
 		}
147 147
 		$count=$this->count();
148
-		for($i=1;$i<$count;$i++){
148
+		for ($i=1; $i<$count; $i++) {
149 149
 			$this->content[$i]->wrap($this->getContentDivider($i-1));
150 150
 		}
151 151
 		return parent::compile($js, $view);
@@ -156,16 +156,16 @@  discard block
 block discarded – undo
156 156
 	 * @see \Ajax\bootstrap\html\base\BaseHtml::on()
157 157
 	 */
158 158
 	public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) {
159
-		foreach ($this->content as $element){
160
-				$element->on($event,$jsCode,$stopPropagation,$preventDefault);
159
+		foreach ($this->content as $element) {
160
+				$element->on($event, $jsCode, $stopPropagation, $preventDefault);
161 161
 		}
162 162
 		return $this;
163 163
 	}
164 164
 
165 165
 
166 166
 	public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) {
167
-		foreach ($this->content as $element){
168
-			if($element->getProperty($this->attr)!=NULL)
167
+		foreach ($this->content as $element) {
168
+			if ($element->getProperty($this->attr)!=NULL)
169 169
 				$element->_ajaxOn($operation, $event, $url, $responseElement, $parameters);
170 170
 		}
171 171
 		return $this;
@@ -177,35 +177,35 @@  discard block
 block discarded – undo
177 177
 	 */
178 178
 	protected function createItem($value) {
179 179
 		$count=$this->count();
180
-		$itemO=new HtmlSemDoubleElement("item-".$this->identifier."-".$count,"a","section");
181
-		if(\is_array($value))
180
+		$itemO=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "a", "section");
181
+		if (\is_array($value))
182 182
 			$itemO->fromArray($value);
183
-		else{
183
+		else {
184 184
 			$itemO->setContent($value);
185 185
 			$itemO->setProperty($this->attr, $this->getHref($count));
186 186
 		}
187 187
 		return $itemO;
188 188
 	}
189 189
 
190
-	public function addIcon($icon,$index){
190
+	public function addIcon($icon, $index) {
191 191
 		$item=$this->getItem($index);
192
-		if(isset($item)){
192
+		if (isset($item)) {
193 193
 			$icon=new HtmlIcon("icon-".$this->identifier, $icon);
194 194
 			$item->wrapContent($icon);
195 195
 		}
196 196
 	}
197 197
 
198
-	public function addItem($item){
198
+	public function addItem($item) {
199 199
 		$itemO=parent::addItem($item);
200 200
 		$this->addToPropertyCtrl("class", "section", array("section"));
201 201
 		return $itemO;
202 202
 	}
203 203
 
204
-	public function asLinks(){
204
+	public function asLinks() {
205 205
 		$this->contentAs("a");
206 206
 	}
207 207
 
208
-	public function asTexts(){
208
+	public function asTexts() {
209 209
 		$this->contentAs("div");
210 210
 	}
211 211
 
Please login to merge, or discard this patch.
Braces   +10 added lines, -8 removed lines patch added patch discarded remove patch
@@ -92,8 +92,9 @@  discard block
 block discarded – undo
92 92
 		if(\sizeof($params)>0 || \strtolower($action)!="index" ){
93 93
 			$items[]=$action;
94 94
 			foreach ($params as $p){
95
-				if(\is_object($p)===false)
96
-					$items[]=$p;
95
+				if(\is_object($p)===false) {
96
+									$items[]=$p;
97
+				}
97 98
 			}
98 99
 		}
99 100
 		return $this->addItems($items);
@@ -111,7 +112,7 @@  discard block
 block discarded – undo
111 112
 		}
112 113
 		if($this->absolutePaths===true){
113 114
 			return $this->_hrefFunction($this->content[$index]);
114
-		}else{
115
+		} else{
115 116
 			return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1));
116 117
 		}
117 118
 	}
@@ -165,8 +166,9 @@  discard block
 block discarded – undo
165 166
 
166 167
 	public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) {
167 168
 		foreach ($this->content as $element){
168
-			if($element->getProperty($this->attr)!=NULL)
169
-				$element->_ajaxOn($operation, $event, $url, $responseElement, $parameters);
169
+			if($element->getProperty($this->attr)!=NULL) {
170
+							$element->_ajaxOn($operation, $event, $url, $responseElement, $parameters);
171
+			}
170 172
 		}
171 173
 		return $this;
172 174
 	}
@@ -178,9 +180,9 @@  discard block
 block discarded – undo
178 180
 	protected function createItem($value) {
179 181
 		$count=$this->count();
180 182
 		$itemO=new HtmlSemDoubleElement("item-".$this->identifier."-".$count,"a","section");
181
-		if(\is_array($value))
182
-			$itemO->fromArray($value);
183
-		else{
183
+		if(\is_array($value)) {
184
+					$itemO->fromArray($value);
185
+		} else{
184 186
 			$itemO->setContent($value);
185 187
 			$itemO->setProperty($this->attr, $this->getHref($count));
186 188
 		}
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
 	 * Associate an ajax get to the breadcrumb elements, displayed in $targetSelector
58 58
 	 * $attr member is used to build each element url
59 59
 	 * @param string $targetSelector the target of the get
60
-	 * @param string $attr the html attribute used to build the elements url
61
-	 * @return HtmlBreadcrumbs
60
+	 * @return HtmlBreadcrumb
62 61
 	 */
63 62
 	public function autoGetOnClick($targetSelector){
64 63
 		return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr));
@@ -83,7 +82,7 @@  discard block
 block discarded – undo
83 82
 	/**
84 83
 	 * Add new elements in breadcrumbs corresponding to request dispatcher : controllerName, actionName, parameters
85 84
 	 * @param Dispatcher $dispatcher the request dispatcher
86
-	 * @return \Ajax\bootstrap\html\HtmlBreadcrumbs
85
+	 * @return HtmlBreadcrumb
87 86
 	 */
88 87
 	public function fromDispatcher($dispatcher,$startIndex=0){
89 88
 		$this->startIndex=$startIndex;
@@ -120,7 +119,7 @@  discard block
 block discarded – undo
120 119
 	/**
121 120
 	 * sets the function who generates the href elements. default : function($element){return $element->getContent()}
122 121
 	 * @param function $_hrefFunction
123
-	 * @return \Ajax\bootstrap\html\HtmlBreadcrumbs
122
+	 * @return HtmlBreadcrumb
124 123
 	 */
125 124
 	public function setHrefFunction($_hrefFunction) {
126 125
 		$this->_hrefFunction = $_hrefFunction;
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlInput.php 2 patches
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -8,53 +8,53 @@
 block discarded – undo
8 8
 use Ajax\semantic\html\base\constants\Variation;
9 9
 use Ajax\semantic\html\base\traits\IconTrait;
10 10
 
11
-class HtmlInput extends HtmlSemDoubleElement{
11
+class HtmlInput extends HtmlSemDoubleElement {
12 12
 	use IconTrait;
13
-	public function __construct($identifier,$type="text",$value="",$placeholder=""){
14
-		parent::__construct("div-".$identifier,"div","ui input");
15
-		$this->content=new \Ajax\common\html\html5\HtmlInput($identifier,$type,$value,$placeholder);
16
-		$this->_states=[State::DISABLED,State::FOCUS,State::ERROR];
13
+	public function __construct($identifier, $type="text", $value="", $placeholder="") {
14
+		parent::__construct("div-".$identifier, "div", "ui input");
15
+		$this->content=new \Ajax\common\html\html5\HtmlInput($identifier, $type, $value, $placeholder);
16
+		$this->_states=[State::DISABLED, State::FOCUS, State::ERROR];
17 17
 		$this->_variations=[Variation::TRANSPARENT];
18 18
 	}
19 19
 
20
-	public function setFocus(){
20
+	public function setFocus() {
21 21
 		$this->addToProperty("class", State::FOCUS);
22 22
 	}
23 23
 
24
-	public function addLoading(){
25
-		if($this->_hasIcon===false){
24
+	public function addLoading() {
25
+		if ($this->_hasIcon===false) {
26 26
 			throw new \Exception("Input must have an icon for showing a loader, use addIcon before");
27 27
 		}
28 28
 		return $this->addToProperty("class", State::LOADING);
29 29
 	}
30 30
 
31
-	public function addLabel($label,$direction=Direction::LEFT,$icon=NULL){
31
+	public function addLabel($label, $direction=Direction::LEFT, $icon=NULL) {
32 32
 		$labelO=$label;
33
-		if(\is_object($label)===false){
34
-			$labelO=new HtmlLabel("label-".$this->identifier,$label);
35
-			if(isset($icon))
33
+		if (\is_object($label)===false) {
34
+			$labelO=new HtmlLabel("label-".$this->identifier, $label);
35
+			if (isset($icon))
36 36
 				$labelO->addIcon($icon);
37
-		}else{
37
+		}else {
38 38
 			$labelO->addToPropertyCtrl("class", "label", array("label"));
39 39
 		}
40 40
 		$this->addToProperty("class", $direction." labeled");
41
-		$this->addContent($labelO,\strstr($direction,Direction::LEFT)!==false);
41
+		$this->addContent($labelO, \strstr($direction, Direction::LEFT)!==false);
42 42
 		return $labelO;
43 43
 	}
44 44
 
45
-	public function addLabelToCorner($label,$direction=Direction::LEFT,$icon=NULL){
46
-		return $this->addLabel($label,$direction." corner",$icon)->toCorner($direction);
45
+	public function addLabelToCorner($label, $direction=Direction::LEFT, $icon=NULL) {
46
+		return $this->addLabel($label, $direction." corner", $icon)->toCorner($direction);
47 47
 	}
48 48
 
49
-	public function addAction($action,$direction=Direction::LEFT,$icon=NULL,$labeled=false){
49
+	public function addAction($action, $direction=Direction::LEFT, $icon=NULL, $labeled=false) {
50 50
 		$actionO=$action;
51
-		if(\is_object($action)===false){
52
-			$actionO=new HtmlButton("action-".$this->identifier,$action);
53
-			if(isset($icon))
54
-				$actionO->addIcon($icon,true,$labeled);
51
+		if (\is_object($action)===false) {
52
+			$actionO=new HtmlButton("action-".$this->identifier, $action);
53
+			if (isset($icon))
54
+				$actionO->addIcon($icon, true, $labeled);
55 55
 		}
56 56
 		$this->addToProperty("class", $direction." action");
57
-		$this->addContent($actionO,\strstr($direction,Direction::LEFT)!==false);
57
+		$this->addContent($actionO, \strstr($direction, Direction::LEFT)!==false);
58 58
 		return $actionO;
59 59
 	}
60 60
 
Please login to merge, or discard this patch.
Braces   +7 added lines, -5 removed lines patch added patch discarded remove patch
@@ -32,9 +32,10 @@  discard block
 block discarded – undo
32 32
 		$labelO=$label;
33 33
 		if(\is_object($label)===false){
34 34
 			$labelO=new HtmlLabel("label-".$this->identifier,$label);
35
-			if(isset($icon))
36
-				$labelO->addIcon($icon);
37
-		}else{
35
+			if(isset($icon)) {
36
+							$labelO->addIcon($icon);
37
+			}
38
+		} else{
38 39
 			$labelO->addToPropertyCtrl("class", "label", array("label"));
39 40
 		}
40 41
 		$this->addToProperty("class", $direction." labeled");
@@ -50,8 +51,9 @@  discard block
 block discarded – undo
50 51
 		$actionO=$action;
51 52
 		if(\is_object($action)===false){
52 53
 			$actionO=new HtmlButton("action-".$this->identifier,$action);
53
-			if(isset($icon))
54
-				$actionO->addIcon($icon,true,$labeled);
54
+			if(isset($icon)) {
55
+							$actionO->addIcon($icon,true,$labeled);
56
+			}
55 57
 		}
56 58
 		$this->addToProperty("class", $direction." action");
57 59
 		$this->addContent($actionO,\strstr($direction,Direction::LEFT)!==false);
Please login to merge, or discard this patch.
Ajax/semantic/html/base/traits/IconTrait.php 3 patches
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 			$this->addToPropertyCtrl("class", $direction." icon", Direction::getConstantValues("icon"));
17 17
 			$this->addContent($iconO,false);
18 18
 			$this->_hasIcon=true;
19
-		}else{
19
+		} else{
20 20
 			$iconO=$this->getIcon();
21 21
 			$iconO->setIcon($icon);
22 22
 			$this->addToPropertyCtrl("class", $direction." icon", Direction::getConstantValues("icon"));
@@ -27,8 +27,9 @@  discard block
 block discarded – undo
27 27
 	public function getIcon(){
28 28
 		if(\is_array($this->content)){
29 29
 			foreach ($this->content as $item){
30
-				if($item instanceof HtmlIcon)
31
-					return $item;
30
+				if($item instanceof HtmlIcon) {
31
+									return $item;
32
+				}
32 33
 			}
33 34
 		}
34 35
 	}
Please login to merge, or discard this patch.
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -7,9 +7,16 @@
 block discarded – undo
7 7
 trait IconTrait {
8 8
 	private $_hasIcon=false;
9 9
 
10
+	/**
11
+	 * @param string $name
12
+	 * @param string $value
13
+	 */
10 14
 	protected abstract function addToPropertyCtrl($name, $value, $typeCtrl);
11 15
 	public abstract function addContent($content,$before=false);
12 16
 
17
+	/**
18
+	 * @param boolean $direction
19
+	 */
13 20
 	public function addIcon($icon,$direction=Direction::LEFT){
14 21
 		if($this->_hasIcon===false){
15 22
 			$iconO=$icon;
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -8,18 +8,18 @@  discard block
 block discarded – undo
8 8
 	private $_hasIcon=false;
9 9
 
10 10
 	protected abstract function addToPropertyCtrl($name, $value, $typeCtrl);
11
-	public abstract function addContent($content,$before=false);
11
+	public abstract function addContent($content, $before=false);
12 12
 
13
-	public function addIcon($icon,$direction=Direction::LEFT){
14
-		if($this->_hasIcon===false){
13
+	public function addIcon($icon, $direction=Direction::LEFT) {
14
+		if ($this->_hasIcon===false) {
15 15
 			$iconO=$icon;
16
-			if(\is_string($icon)){
16
+			if (\is_string($icon)) {
17 17
 				$iconO=new HtmlIcon("icon-".$this->identifier, $icon);
18 18
 			}
19 19
 			$this->addToPropertyCtrl("class", $direction." icon", Direction::getConstantValues("icon"));
20
-			$this->addContent($iconO,false);
20
+			$this->addContent($iconO, false);
21 21
 			$this->_hasIcon=true;
22
-		}else{
22
+		}else {
23 23
 			$iconO=$this->getIcon();
24 24
 			$iconO->setIcon($icon);
25 25
 			$this->addToPropertyCtrl("class", $direction." icon", Direction::getConstantValues("icon"));
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
 		return $iconO;
28 28
 	}
29 29
 
30
-	public function getIcon(){
31
-		if(\is_array($this->content)){
32
-			foreach ($this->content as $item){
33
-				if($item instanceof HtmlIcon)
30
+	public function getIcon() {
31
+		if (\is_array($this->content)) {
32
+			foreach ($this->content as $item) {
33
+				if ($item instanceof HtmlIcon)
34 34
 					return $item;
35 35
 			}
36 36
 		}
Please login to merge, or discard this patch.
Ajax/semantic/html/base/constants/Emphasis.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 use Ajax\common\BaseEnum;
6 6
 
7 7
 abstract class Emphasis extends BaseEnum {
8
-	const PRIMARY="primary",SECONDARY="secondary",TERTIARY="tertiary";
8
+	const PRIMARY="primary", SECONDARY="secondary", TERTIARY="tertiary";
9 9
 }
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/semantic/html/base/HtmlSemNavElement.php 3 patches
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
 	protected $_contentSeparator="";
23 23
 
24 24
 
25
-	public function __construct($identifier,$tagName,$baseClass){
26
-		parent::__construct($identifier,$tagName,$baseClass);
25
+	public function __construct($identifier, $tagName, $baseClass) {
26
+		parent::__construct($identifier, $tagName, $baseClass);
27 27
 		$this->root="";
28 28
 		$this->attr="data-ajax";
29 29
 	}
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
 	 * @param string $attr the html attribute used to build the elements url
36 36
 	 * @return HtmlNavElement
37 37
 	 */
38
-	public function autoGetOnClick($targetSelector){
39
-		return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr));
38
+	public function autoGetOnClick($targetSelector) {
39
+		return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr));
40 40
 	}
41 41
 
42
-	public function contentAsString(){
42
+	public function contentAsString() {
43 43
 		return JArray::implode($this->_contentSeparator, $this->content);
44 44
 	}
45 45
 
@@ -47,15 +47,15 @@  discard block
 block discarded – undo
47 47
 	 * Generate the jquery script to set the elements to the HtmlNavElement
48 48
 	 * @param JsUtils $jsUtils
49 49
 	 */
50
-	public function jsSetContent(JsUtils $jsUtils){
51
-		$jsUtils->html("#".$this->identifier,str_replace("\"","'", $this->contentAsString()),true);
50
+	public function jsSetContent(JsUtils $jsUtils) {
51
+		$jsUtils->html("#".$this->identifier, str_replace("\"", "'", $this->contentAsString()), true);
52 52
 	}
53 53
 
54 54
 	public function getRoot() {
55 55
 		return $this->root;
56 56
 	}
57 57
 	public function setRoot($root) {
58
-		$this->root = $root;
58
+		$this->root=$root;
59 59
 		return $this;
60 60
 	}
61 61
 	public function getAttr() {
@@ -68,12 +68,12 @@  discard block
 block discarded – undo
68 68
 	 * @return HtmlNavElement
69 69
 	 */
70 70
 	public function setAttr($attr) {
71
-		$this->attr = $attr;
71
+		$this->attr=$attr;
72 72
 		return $this;
73 73
 	}
74 74
 
75 75
 	public function __call($method, $args) {
76
-		if(isset($this->$method) && is_callable($this->$method)) {
76
+		if (isset($this->$method) && is_callable($this->$method)) {
77 77
 			return call_user_func_array(
78 78
 					$this->$method,
79 79
 					$args
@@ -81,32 +81,32 @@  discard block
 block discarded – undo
81 81
 		}
82 82
 	}
83 83
 
84
-	public abstract function fromDispatcher($dispatcher,$startIndex=0);
84
+	public abstract function fromDispatcher($dispatcher, $startIndex=0);
85 85
 
86 86
 
87
-	public function setContentDivider($divider,$index=NULL) {
87
+	public function setContentDivider($divider, $index=NULL) {
88 88
 		$divider="<div class='divider'> {$divider} </div>";
89 89
 		return $this->setDivider($divider, $index);
90 90
 	}
91 91
 
92
-	public function setIconContentDivider($iconContentDivider,$index=NULL) {
92
+	public function setIconContentDivider($iconContentDivider, $index=NULL) {
93 93
 		$contentDivider="<i class='".$iconContentDivider." icon divider'></i>";
94 94
 		return $this->setDivider($contentDivider, $index);
95 95
 	}
96 96
 
97
-	protected function setDivider($divider,$index){
98
-		if(isset($index)){
99
-			if(\is_array($this->_contentSeparator)===false)
100
-				$this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator);
97
+	protected function setDivider($divider, $index) {
98
+		if (isset($index)) {
99
+			if (\is_array($this->_contentSeparator)===false)
100
+				$this->_contentSeparator=array_fill(0, $this->count()-1, $this->_contentSeparator);
101 101
 			$this->_contentSeparator[$index]=$divider;
102
-		}else{
102
+		}else {
103 103
 			$this->_contentSeparator=$divider;
104 104
 		}
105 105
 		return $this;
106 106
 	}
107 107
 
108
-	protected function getContentDivider($index){
109
-		if(\is_array($this->_contentSeparator)===true){
108
+	protected function getContentDivider($index) {
109
+		if (\is_array($this->_contentSeparator)===true) {
110 110
 			return @$this->_contentSeparator[$index];
111 111
 		}
112 112
 		return $this->_contentSeparator;
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,10 +96,11 @@
 block discarded – undo
96 96
 
97 97
 	protected function setDivider($divider,$index){
98 98
 		if(isset($index)){
99
-			if(\is_array($this->_contentSeparator)===false)
100
-				$this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator);
99
+			if(\is_array($this->_contentSeparator)===false) {
100
+							$this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator);
101
+			}
101 102
 			$this->_contentSeparator[$index]=$divider;
102
-		}else{
103
+		} else{
103 104
 			$this->_contentSeparator=$divider;
104 105
 		}
105 106
 		return $this;
Please login to merge, or discard this patch.
Doc Comments   +10 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,6 +22,11 @@  discard block
 block discarded – undo
22 22
 	protected $_contentSeparator="";
23 23
 
24 24
 
25
+	/**
26
+	 * @param string $identifier
27
+	 * @param string $tagName
28
+	 * @param string $baseClass
29
+	 */
25 30
 	public function __construct($identifier,$tagName,$baseClass){
26 31
 		parent::__construct($identifier,$tagName,$baseClass);
27 32
 		$this->root="";
@@ -31,7 +36,7 @@  discard block
 block discarded – undo
31 36
 	/**
32 37
 	 * Associate an ajax get to the elements, displayed in $targetSelector
33 38
 	 * @param string $targetSelector the target of the get
34
-	 * @return HtmlNavElement
39
+	 * @return HtmlSemNavElement
35 40
 	 */
36 41
 	public function autoGetOnClick($targetSelector){
37 42
 		return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr));
@@ -63,7 +68,7 @@  discard block
 block discarded – undo
63 68
 	/**
64 69
 	 * Define the html attribute for each element url in ajax
65 70
 	 * @param string $attr html attribute
66
-	 * @return HtmlNavElement
71
+	 * @return HtmlSemNavElement
67 72
 	 */
68 73
 	public function setAttr($attr) {
69 74
 		$this->attr = $attr;
@@ -103,6 +108,9 @@  discard block
 block discarded – undo
103 108
 		return $this;
104 109
 	}
105 110
 
111
+	/**
112
+	 * @param integer $index
113
+	 */
106 114
 	protected function getContentDivider($index){
107 115
 		if(\is_array($this->_contentSeparator)===true){
108 116
 			return @$this->_contentSeparator[$index];
Please login to merge, or discard this patch.
Ajax/service/JArray.php 2 patches
Braces   +7 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,15 +13,17 @@  discard block
 block discarded – undo
13 13
 			return $array [$key];
14 14
 		}
15 15
 		$values=array_values($array);
16
-		if ($pos<sizeof($values))
17
-			return $values [$pos];
16
+		if ($pos<sizeof($values)) {
17
+					return $values [$pos];
18
+		}
18 19
 	}
19 20
 
20 21
 	public static function getDefaultValue($array, $key, $default) {
21 22
 		if (array_key_exists($key, $array)) {
22 23
 			return $array [$key];
23
-		} else
24
-			return $default;
24
+		} else {
25
+					return $default;
26
+		}
25 27
 	}
26 28
 
27 29
 	public static function implode($glue,$pieces){
@@ -34,7 +36,7 @@  discard block
 block discarded – undo
34 36
 				}
35 37
 				$result.=$pieces[$size-1];
36 38
 			}
37
-		}else{
39
+		} else{
38 40
 			$result=\implode($glue, $pieces);
39 41
 		}
40 42
 		return $result;
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 class JArray {
6 6
 
7 7
 	public static function isAssociative($array) {
8
-		return (array_values($array) !== $array);
8
+		return (array_values($array)!==$array);
9 9
 		//return (array_keys($array)!==range(0, count($array)-1));
10 10
 	}
11 11
 
@@ -21,21 +21,21 @@  discard block
 block discarded – undo
21 21
 	public static function getDefaultValue($array, $key, $default) {
22 22
 		if (array_key_exists($key, $array)) {
23 23
 			return $array [$key];
24
-		} else
24
+		}else
25 25
 			return $default;
26 26
 	}
27 27
 
28
-	public static function implode($glue,$pieces){
28
+	public static function implode($glue, $pieces) {
29 29
 		$result="";
30
-		if(\is_array($glue)){
30
+		if (\is_array($glue)) {
31 31
 			$size=\sizeof($pieces);
32
-			if($size>0){
33
-				for($i=0;$i<$size-1;$i++){
32
+			if ($size>0) {
33
+				for ($i=0; $i<$size-1; $i++) {
34 34
 					$result.=$pieces[$i].@$glue[$i];
35 35
 				}
36 36
 				$result.=$pieces[$size-1];
37 37
 			}
38
-		}else{
38
+		}else {
39 39
 			$result=\implode($glue, $pieces);
40 40
 		}
41 41
 		return $result;
Please login to merge, or discard this patch.
Ajax/semantic/html/base/traits/LabeledIconTrait.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,17 +13,17 @@
 block discarded – undo
13 13
 	 * @param boolean $labeled
14 14
 	 * @return \Ajax\semantic\html\elements\HtmlIcon
15 15
 	 */
16
-	public function addIcon($icon,$before=true,$labeled=false){
16
+	public function addIcon($icon, $before=true, $labeled=false) {
17 17
 		$iconO=$icon;
18
-		if(\is_string($icon)){
18
+		if (\is_string($icon)) {
19 19
 			$iconO=new HtmlIcon("icon-".$this->identifier, $icon);
20 20
 		}
21
-		if($labeled!==false){
22
-			$direction=($before===true)?Direction::LEFT:Direction::RIGHT;
21
+		if ($labeled!==false) {
22
+			$direction=($before===true) ? Direction::LEFT : Direction::RIGHT;
23 23
 			$this->addToProperty("class", $direction." labeled icon");
24 24
 			$this->tagName="div";
25 25
 		}
26
-		$this->addContent($iconO,$before);
26
+		$this->addContent($iconO, $before);
27 27
 		return $iconO;
28 28
 	}
29 29
 }
30 30
\ No newline at end of file
Please login to merge, or discard this patch.