Completed
Push — master ( 8e32f8...32ad89 )
by Jean-Christophe
03:26
created
Ajax/common/BaseEnum.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@
 block discarded – undo
24 24
 	}
25 25
 
26 26
 	public static function getConstantValues($postFix=""){
27
-		if($postFix!=="")
28
-			return \array_values(self::getConstants());
29
-		else{
27
+		if($postFix!=="") {
28
+					return \array_values(self::getConstants());
29
+		} else{
30 30
 			return \array_map(function ($elem) use ($postFix) {return $elem." ".$postFix;},\array_values(self::getConstants()));
31 31
 		}
32 32
 	}
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlImage.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,9 @@
 block discarded – undo
19 19
 	}
20 20
 
21 21
 	public function asAvatar($caption=NULL){
22
-		if(isset($caption))
23
-			$this->wrap("",$caption);
22
+		if(isset($caption)) {
23
+					$this->wrap("",$caption);
24
+		}
24 25
 		return $this->addToProperty("class", "avatar");
25 26
 	}
26 27
 }
27 28
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/common/html/html5/HtmlInput.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,9 @@
 block discarded – undo
11 11
 		parent::__construct($identifier, "input");
12 12
 		$this->setProperty("name", $identifier);
13 13
 		$this->setProperty("value", $value);
14
-		if(JString::isNotNull($placeholder))
15
-			$this->setProperty("placeholder", $placeholder);
14
+		if(JString::isNotNull($placeholder)) {
15
+					$this->setProperty("placeholder", $placeholder);
16
+		}
16 17
 		$this->setProperty("type", $type);
17 18
 	}
18 19
 
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlList.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,9 @@
 block discarded – undo
19 19
 		if(\is_array($value)){
20 20
 			$item=new HtmlListItem("item-".$this->identifier."-".$count, $value[0]);
21 21
 			$item->addIcon($value[1]);
22
-		}else
23
-			$item= new HtmlListItem("item-".$this->identifier."-".$count, $value);
22
+		} else {
23
+					$item= new HtmlListItem("item-".$this->identifier."-".$count, $value);
24
+		}
24 25
 		return $item;
25 26
 	}
26 27
 
Please login to merge, or discard this patch.
Ajax/semantic/html/modules/HtmlDropdown.php 1 patch
Braces   +28 added lines, -20 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 		$itemO=$item;
35 35
 		if(\is_object($item)===false){
36 36
 			$itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items),$item,$value,$image);
37
-		}elseif($itemO instanceof HtmlDropdownItem){
37
+		} elseif($itemO instanceof HtmlDropdownItem){
38 38
 			$this->addToProperty("class", "vertical");
39 39
 		}
40 40
 		$this->items[]=$itemO;
@@ -42,8 +42,9 @@  discard block
 block discarded – undo
42 42
 	}
43 43
 
44 44
 	public function addInput($name){
45
-		if(!isset($name))
46
-			$name="input-".$this->identifier;
45
+		if(!isset($name)) {
46
+					$name="input-".$this->identifier;
47
+		}
47 48
 		$this->setAction("activate");
48 49
 		$this->input=new HtmlInput($name,"hidden");
49 50
 	}
@@ -53,7 +54,7 @@  discard block
 block discarded – undo
53 54
 			foreach ($items as $k=>$v){
54 55
 				$this->addItem($v)->setData($k);
55 56
 			}
56
-		}else{
57
+		} else{
57 58
 			foreach ($items as $item){
58 59
 				$this->addItem($item);
59 60
 			}
@@ -67,7 +68,7 @@  discard block
 block discarded – undo
67 68
 		if($dropdown===false){
68 69
 			$this->_template=include dirname(__FILE__).'/../templates/tplDropdownMenu.php';
69 70
 			$dropdown="menu";
70
-		}else{
71
+		} else{
71 72
 			$dropdown="dropdown";
72 73
 			$this->mClass="menu";
73 74
 		}
@@ -83,18 +84,22 @@  discard block
 block discarded – undo
83 84
 	}
84 85
 
85 86
 	public function asButton($floating=false){
86
-		if($floating)
87
-			$this->addToProperty("class", "floating");
87
+		if($floating) {
88
+					$this->addToProperty("class", "floating");
89
+		}
88 90
 		return $this->addToProperty("class", "button");
89 91
 	}
90 92
 
91 93
 	public function asSelect($name=NULL,$multiple=false,$selection=true){
92
-		if(isset($name))
93
-			$this->addInput($name);
94
-		if($multiple)
95
-			$this->addToProperty("class", "multiple");
96
-		if ($selection)
97
-			$this->addToPropertyCtrl("class", "selection",array("selection"));
94
+		if(isset($name)) {
95
+					$this->addInput($name);
96
+		}
97
+		if($multiple) {
98
+					$this->addToProperty("class", "multiple");
99
+		}
100
+		if ($selection) {
101
+					$this->addToPropertyCtrl("class", "selection",array("selection"));
102
+		}
98 103
 		return $this;
99 104
 	}
100 105
 
@@ -104,8 +109,9 @@  discard block
 block discarded – undo
104 109
 	}
105 110
 
106 111
 	public function setSelect($name=NULL,$multiple=false){
107
-		if(!isset($name))
108
-			$name="select-".$this->identifier;
112
+		if(!isset($name)) {
113
+					$name="select-".$this->identifier;
114
+		}
109 115
 		$this->input=null;
110 116
 		if($multiple){
111 117
 			$this->setProperty("multiple", true);
@@ -136,12 +142,13 @@  discard block
 block discarded – undo
136 142
 	public function setValue($value){
137 143
 		if(isset($this->input)){
138 144
 			$this->input->setProperty("value", $value);
139
-		}else{
145
+		} else{
140 146
 			$this->setProperty("value", $value);
141 147
 		}
142 148
 		$textElement=$this->getElementById("text-".$this->identifier, $this->content);
143
-		if(isset($textElement))
144
-			$textElement->setContent($value);
149
+		if(isset($textElement)) {
150
+					$textElement->setContent($value);
151
+		}
145 152
 		return $this;
146 153
 	}
147 154
 
@@ -151,8 +158,9 @@  discard block
 block discarded – undo
151 158
 	 */
152 159
 	public function run(JsUtils $js) {
153 160
 		if($this->propertyContains("class", "simple")===false){
154
-			if(isset($this->_bsComponent)===false)
155
-				$this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier,$this->params);
161
+			if(isset($this->_bsComponent)===false) {
162
+							$this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier,$this->params);
163
+			}
156 164
 			$this->addEventsOnRun($js);
157 165
 			return $this->_bsComponent;
158 166
 		}
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlMenu.php 1 patch
Braces   +11 added lines, -9 removed lines patch added patch discarded remove patch
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
 			$item=$itemO;
51 51
 		}
52 52
 		$item=parent::addItem($item);
53
-		if(!$item instanceof HtmlMenu)
54
-			$item->addToPropertyCtrl("class", "item",array("item"));
55
-		else{
53
+		if(!$item instanceof HtmlMenu) {
54
+					$item->addToPropertyCtrl("class", "item",array("item"));
55
+		} else{
56 56
 			$this->setSecondary();
57 57
 		}
58 58
 	}
@@ -102,8 +102,9 @@  discard block
 block discarded – undo
102 102
 
103 103
 	public function asTab($vertical=false){
104 104
 		$this->apply(function(HtmlDoubleElement &$item){$item->setTagName("a");});
105
-		if($vertical===true)
106
-			$this->setVertical();
105
+		if($vertical===true) {
106
+					$this->setVertical();
107
+		}
107 108
 		return $this->addToProperty("class", "tabular");
108 109
 	}
109 110
 
@@ -129,9 +130,10 @@  discard block
 block discarded – undo
129 130
 	 */
130 131
 	public function fromDatabaseObject($object, $function) {
131 132
 		$return=$function($object);
132
-		if(\is_array($return))
133
-			$this->addItems($return);
134
-		else
135
-		$this->addItem($return);
133
+		if(\is_array($return)) {
134
+					$this->addItems($return);
135
+		} else {
136
+				$this->addItem($return);
137
+		}
136 138
 	}
137 139
 }
138 140
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/common/html/BaseHtml.php 1 patch
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.
Ajax/semantic/html/collections/HtmlBreadcrumb.php 1 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.
Ajax/semantic/html/elements/HtmlButton.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,9 +52,9 @@
 block discarded – undo
52 52
 	}
53 53
 
54 54
 	public function setFocusable($value=true){
55
-		if($value===true)
56
-			$this->setProperty("tabindex", "0");
57
-		else{
55
+		if($value===true) {
56
+					$this->setProperty("tabindex", "0");
57
+		} else{
58 58
 			$this->removeProperty("tabindex");
59 59
 		}
60 60
 		return $this;
Please login to merge, or discard this patch.