Passed
Push — master ( 393036...073ff9 )
by Jean-Christophe
02:50
created
Ajax/semantic/widgets/base/InstanceViewer.php 1 patch
Spacing   +115 added lines, -115 removed lines patch added patch discarded remove patch
@@ -21,50 +21,50 @@  discard block
 block discarded – undo
21 21
 
22 22
 	public static $index=0;
23 23
 
24
-	public function __construct($identifier,$instance=NULL,$captions=NULL){
24
+	public function __construct($identifier, $instance=NULL, $captions=NULL) {
25 25
 		$this->widgetIdentifier=$identifier;
26 26
 		$this->values=[];
27 27
 		$this->afterCompile=[];
28
-		if(isset($instance))
28
+		if (isset($instance))
29 29
 			$this->setInstance($instance);
30 30
 		$this->setCaptions($captions);
31 31
 		$this->captionCallback=NULL;
32
-		$this->defaultValueFunction=function($name,$value){return $value;};
32
+		$this->defaultValueFunction=function($name, $value) {return $value; };
33 33
 	}
34 34
 
35
-	public function moveFieldTo($from,$to){
36
-		if(JArray::moveElementTo($this->visibleProperties, $from, $to)){
35
+	public function moveFieldTo($from, $to) {
36
+		if (JArray::moveElementTo($this->visibleProperties, $from, $to)) {
37 37
 			return JArray::moveElementTo($this->values, $from, $to);
38 38
 		}
39 39
 		return false;
40 40
 	}
41 41
 
42
-	public function swapFields($index1,$index2){
43
-		if(JArray::swapElements($this->visibleProperties, $index1, $index2)){
42
+	public function swapFields($index1, $index2) {
43
+		if (JArray::swapElements($this->visibleProperties, $index1, $index2)) {
44 44
 			return JArray::swapElements($this->values, $index1, $index2);
45 45
 		}
46 46
 		return false;
47 47
 	}
48 48
 
49
-	public function removeField($index){
50
-		\array_splice($this->visibleProperties,$index,1);
51
-		\array_splice($this->values,$index,1);
52
-		\array_splice($this->captions,$index,1);
49
+	public function removeField($index) {
50
+		\array_splice($this->visibleProperties, $index, 1);
51
+		\array_splice($this->values, $index, 1);
52
+		\array_splice($this->captions, $index, 1);
53 53
 		return $this;
54 54
 	}
55 55
 
56
-	public function getValues(){
56
+	public function getValues() {
57 57
 		$values=[];
58 58
 		$index=0;
59 59
 		$count=$this->count();
60 60
 		$hasGroupby=is_array($this->groupByFields);
61
-		if(!$hasGroupby){
62
-			while($index<$count){
61
+		if (!$hasGroupby) {
62
+			while ($index<$count) {
63 63
 					$values[]=$this->getValue($index++);
64 64
 			}
65
-		}else{
66
-			while($index<$count){
67
-				if(array_search($index, $this->groupByFields)===false){
65
+		} else {
66
+			while ($index<$count) {
67
+				if (array_search($index, $this->groupByFields)===false) {
68 68
 					$values[]=$this->getValue($index);
69 69
 				}
70 70
 				$index++;
@@ -73,203 +73,203 @@  discard block
 block discarded – undo
73 73
 		return $values;
74 74
 	}
75 75
 
76
-	public function getIdentifier($index=NULL){
77
-		if(!isset($index))
76
+	public function getIdentifier($index=NULL) {
77
+		if (!isset($index))
78 78
 			$index=self::$index;
79 79
 		$value=$index;
80
-		if(isset($this->values["identifier"])){
81
-			if(\is_string($this->values["identifier"]))
80
+		if (isset($this->values["identifier"])) {
81
+			if (\is_string($this->values["identifier"]))
82 82
 				$value=JReflection::callMethod($this->instance, $this->values["identifier"], []);
83 83
 			else
84
-				$value=$this->values["identifier"]($index,$this->instance);
84
+				$value=$this->values["identifier"]($index, $this->instance);
85 85
 		}
86 86
 		return $value;
87 87
 	}
88 88
 
89
-	public function getValue($index){
89
+	public function getValue($index) {
90 90
 		$property=$this->properties[$index];
91 91
 		return $this->_getValue($property, $index);
92 92
 	}
93 93
 
94
-	protected function _beforeAddProperty($index,&$field){
94
+	protected function _beforeAddProperty($index, &$field) {
95 95
 
96 96
 	}
97 97
 
98
-	protected function _getDefaultValue($name,$value,$index){
98
+	protected function _getDefaultValue($name, $value, $index) {
99 99
 		$func=$this->defaultValueFunction;
100
-		return $func($name,$value,$index,$this->instance);
100
+		return $func($name, $value, $index, $this->instance);
101 101
 	}
102 102
 
103
-	protected function _getPropertyValue(\ReflectionProperty $property){
103
+	protected function _getPropertyValue(\ReflectionProperty $property) {
104 104
 		$property->setAccessible(true);
105 105
 		return $property->getValue($this->instance);
106 106
 	}
107 107
 
108
-	protected function _getValue($property,$index){
108
+	protected function _getValue($property, $index) {
109 109
 		$value=null;
110 110
 		$propertyName=$property;
111
-		if($property instanceof \ReflectionProperty){
111
+		if ($property instanceof \ReflectionProperty) {
112 112
 			$value=$this->_getPropertyValue($property);
113 113
 			$propertyName=$property->getName();
114
-		}elseif(\is_callable($property) && array_search($property, ["system"])===false)
114
+		}elseif (\is_callable($property) && array_search($property, ["system"])===false)
115 115
 			$value=$property($this->instance);
116
-		elseif(\is_array($property)){
117
-			$values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property);
116
+		elseif (\is_array($property)) {
117
+			$values=\array_map(function($v) use ($index){return $this->_getValue($v, $index); }, $property);
118 118
 			$value=\implode("", $values);
119
-		}elseif(\is_string($property)){
119
+		}elseif (\is_string($property)) {
120 120
 			$value=$property;
121
-			if(isset($this->instance->{$property})){
121
+			if (isset($this->instance->{$property})) {
122 122
 				$value=$this->instance->{$property};
123
-			}elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){
123
+			}elseif (\method_exists($this->instance, $getter=JReflection::getterName($property))) {
124 124
 				$value=JReflection::callMethod($this->instance, $getter, []);
125 125
 			}
126 126
 		}
127 127
 		return $this->_postGetValue($index, $propertyName, $value);
128 128
 	}
129 129
 
130
-	protected function _postGetValue($index,$propertyName,$value){
131
-		if(isset($this->values[$index])){
132
-			$value= $this->values[$index]($value,$this->instance,$index,self::$index);
133
-		}else{
134
-			$value=$this->_getDefaultValue($propertyName,$value, $index);
130
+	protected function _postGetValue($index, $propertyName, $value) {
131
+		if (isset($this->values[$index])) {
132
+			$value=$this->values[$index]($value, $this->instance, $index, self::$index);
133
+		} else {
134
+			$value=$this->_getDefaultValue($propertyName, $value, $index);
135 135
 		}
136
-		if(isset($this->afterCompile[$index])){
137
-			if(\is_callable($this->afterCompile[$index])){
138
-				$this->afterCompile[$index]($value,$this->instance,self::$index);
136
+		if (isset($this->afterCompile[$index])) {
137
+			if (\is_callable($this->afterCompile[$index])) {
138
+				$this->afterCompile[$index]($value, $this->instance, self::$index);
139 139
 			}
140 140
 		}
141 141
 		return $value;
142 142
 	}
143 143
 
144
-	public function insertField($index,$field,$key=null){
145
-		if(isset($key)){
146
-			array_splice( $this->visibleProperties, $index, 0, [$key=>$field] );
147
-		}else{
148
-			array_splice( $this->visibleProperties, $index, 0, $field );
144
+	public function insertField($index, $field, $key=null) {
145
+		if (isset($key)) {
146
+			array_splice($this->visibleProperties, $index, 0, [$key=>$field]);
147
+		} else {
148
+			array_splice($this->visibleProperties, $index, 0, $field);
149 149
 		}
150 150
 		return $this;
151 151
 	}
152 152
 	
153
-	public function sortColumnContent($index,$array){
154
-		if(isset($this->visibleProperties[$index])){
155
-			if(is_array($this->visibleProperties[$index])){
156
-				$this->visibleProperties[$index]=JArray::sortAssociative($this->visibleProperties[$index],$array);
153
+	public function sortColumnContent($index, $array) {
154
+		if (isset($this->visibleProperties[$index])) {
155
+			if (is_array($this->visibleProperties[$index])) {
156
+				$this->visibleProperties[$index]=JArray::sortAssociative($this->visibleProperties[$index], $array);
157 157
 			}
158 158
 		}
159 159
 		return $this;
160 160
 	}
161 161
 
162
-	public function insertInField($index,$field,$key=null){
162
+	public function insertInField($index, $field, $key=null) {
163 163
 		$vb=$this->visibleProperties;
164
-		if(isset($vb[$index])){
165
-			if(isset($key)){
166
-				if(\is_array($vb[$index])){
164
+		if (isset($vb[$index])) {
165
+			if (isset($key)) {
166
+				if (\is_array($vb[$index])) {
167 167
 					$this->visibleProperties[$index][$key]=$field;
168
-				}else{
169
-					$this->visibleProperties[$index]=[$vb[$index],$key=>$field];
168
+				} else {
169
+					$this->visibleProperties[$index]=[$vb[$index], $key=>$field];
170 170
 				}
171
-			}else{
172
-				if(\is_array($vb[$index])){
171
+			} else {
172
+				if (\is_array($vb[$index])) {
173 173
 					$this->visibleProperties[$index][]=$field;
174
-				}else{
175
-					$this->visibleProperties[$index]=[$vb[$index],$field];
174
+				} else {
175
+					$this->visibleProperties[$index]=[$vb[$index], $field];
176 176
 				}
177 177
 			}
178
-		}else{
178
+		} else {
179 179
 			return $this->insertField($index, $field);
180 180
 		}
181 181
 		return $this;
182 182
 	}
183 183
 
184
-	public function addField($field,$key=null){
185
-		if(isset($key)){
184
+	public function addField($field, $key=null) {
185
+		if (isset($key)) {
186 186
 			$this->visibleProperties[]=[$key=>$field];
187
-		}else{
187
+		} else {
188 188
 			$this->visibleProperties[]=$field;
189 189
 		}
190 190
 		return $this;
191 191
 	}
192 192
 
193
-	public function addFields($fields){
194
-		$this->visibleProperties=\array_merge($this->visibleProperties,$fields);
193
+	public function addFields($fields) {
194
+		$this->visibleProperties=\array_merge($this->visibleProperties, $fields);
195 195
 		return $this;
196 196
 	}
197 197
 
198
-	public function count(){
198
+	public function count() {
199 199
 		return \sizeof($this->properties);
200 200
 	}
201 201
 
202
-	public function visiblePropertiesCount(){
202
+	public function visiblePropertiesCount() {
203 203
 		return \sizeof($this->visibleProperties);
204 204
 	}
205 205
 
206
-	public function getProperty($index){
206
+	public function getProperty($index) {
207 207
 		return $this->properties[$index];
208 208
 	}
209 209
 
210
-	public function getFieldName($index){
210
+	public function getFieldName($index) {
211 211
 		$property=$this->getProperty($index);
212
-		if($property instanceof \ReflectionProperty){
212
+		if ($property instanceof \ReflectionProperty) {
213 213
 			$result=$property->getName();
214
-		}elseif(\is_callable($property)){
214
+		}elseif (\is_callable($property)) {
215 215
 			$result=$this->visibleProperties[$index];
216
-		}else{
216
+		} else {
217 217
 			$result=$property;
218 218
 		}
219 219
 		return $result;
220 220
 	}
221 221
 
222 222
 
223
-	protected function showableProperty(\ReflectionProperty $rProperty){
224
-		return JString::startswith($rProperty->getName(),"_")===false;
223
+	protected function showableProperty(\ReflectionProperty $rProperty) {
224
+		return JString::startswith($rProperty->getName(), "_")===false;
225 225
 	}
226 226
 
227 227
 	public function setInstance($instance) {
228
-		if(\is_string($instance)){
228
+		if (\is_string($instance)) {
229 229
 			$instance=new $instance();
230 230
 		}
231 231
 		$this->instance=$instance;
232 232
 		$this->properties=[];
233 233
 		$this->reflect=new \ReflectionClass($instance);
234
-		if(JArray::count($this->visibleProperties)===0){
234
+		if (JArray::count($this->visibleProperties)===0) {
235 235
 			$this->properties=$this->getDefaultProperties();
236
-		}else{
237
-			foreach ($this->visibleProperties as $property){
236
+		} else {
237
+			foreach ($this->visibleProperties as $property) {
238 238
 				$this->setInstanceProperty($property);
239 239
 			}
240 240
 		}
241 241
 		return $this;
242 242
 	}
243 243
 
244
-	private function setInstanceProperty($property){
245
-		if(\is_callable($property)){
244
+	private function setInstanceProperty($property) {
245
+		if (\is_callable($property)) {
246 246
 			$this->properties[]=$property;
247
-		}elseif(\is_string($property)){
248
-			try{
247
+		}elseif (\is_string($property)) {
248
+			try {
249 249
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
250 250
 				$rProperty=$this->reflect->getProperty($property);
251 251
 				$this->properties[]=$rProperty;
252
-			}catch(\Exception $e){
252
+			}catch (\Exception $e) {
253 253
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
254 254
 				$this->properties[]=$property;
255 255
 			}
256
-		}elseif(\is_int($property)){
256
+		}elseif (\is_int($property)) {
257 257
 			$props=$this->getDefaultProperties();
258
-			if(isset($props[$property]))
258
+			if (isset($props[$property]))
259 259
 				$this->properties[]=$props[$property];
260 260
 				else
261 261
 					$this->properties[]=$property;
262
-		}else{
262
+		} else {
263 263
 			$this->properties[]=$property;
264 264
 		}
265 265
 	}
266 266
 
267
-	protected function getDefaultProperties(){
267
+	protected function getDefaultProperties() {
268 268
 		$result=[];
269 269
 		$properties=$this->reflect->getProperties();
270
-		foreach ($properties as $property){
270
+		foreach ($properties as $property) {
271 271
 			$showable=$this->showableProperty($property);
272
-			if($showable!==false){
272
+			if ($showable!==false) {
273 273
 				$result[]=$property;
274 274
 			}
275 275
 		}
@@ -281,12 +281,12 @@  discard block
 block discarded – undo
281 281
 		return $this;
282 282
 	}
283 283
 
284
-	public function setValueFunction($index,$callback){
284
+	public function setValueFunction($index, $callback) {
285 285
 		$this->values[$index]=$callback;
286 286
 		return $this;
287 287
 	}
288 288
 
289
-	public function setIdentifierFunction($callback){
289
+	public function setIdentifierFunction($callback) {
290 290
 		$this->values["identifier"]=$callback;
291 291
 		return $this;
292 292
 	}
@@ -299,49 +299,49 @@  discard block
 block discarded – undo
299 299
 		return $this->properties;
300 300
 	}
301 301
 
302
-	public function getCaption($index){
303
-		if(isset($this->captions[$index])){
302
+	public function getCaption($index) {
303
+		if (isset($this->captions[$index])) {
304 304
 			return $this->captions[$index];
305 305
 		}
306
-		if($this->properties[$index] instanceof \ReflectionProperty)
306
+		if ($this->properties[$index] instanceof \ReflectionProperty)
307 307
 			return $this->properties[$index]->getName();
308
-		elseif(\is_callable($this->properties[$index]))
308
+		elseif (\is_callable($this->properties[$index]))
309 309
 			return "";
310 310
 		else
311 311
 			return $this->properties[$index];
312 312
 	}
313 313
 
314
-	public function getCaptions(){
314
+	public function getCaptions() {
315 315
 		$hasGroupby=is_array($this->groupByFields);
316 316
 		$count=$this->count();
317 317
 		$moreAdded=false;
318
-		if(isset($this->captions)){
319
-			$captions= \array_values($this->captions);
320
-			$gbSize=$hasGroupby?sizeof($this->groupByFields):0;
318
+		if (isset($this->captions)) {
319
+			$captions=\array_values($this->captions);
320
+			$gbSize=$hasGroupby ?sizeof($this->groupByFields) : 0;
321 321
 			$captionsSize=\sizeof($captions);
322
-			for($i=$captionsSize;$i<$count-$gbSize;$i++){
322
+			for ($i=$captionsSize; $i<$count-$gbSize; $i++) {
323 323
 				$captions[]="";
324 324
 				$moreAdded=true;
325 325
 			}
326
-		}else{
326
+		} else {
327 327
 			$captions=[];
328 328
 			$index=0;
329
-			while($index<$count){
329
+			while ($index<$count) {
330 330
 					$captions[]=$this->getCaption($index++);
331 331
 			}
332 332
 		}
333
-		if($hasGroupby && sizeof($captions)>=$count && !$moreAdded){
333
+		if ($hasGroupby && sizeof($captions)>=$count && !$moreAdded) {
334 334
 			$captions=UArray::removeByKeys($captions, $this->groupByFields);
335 335
 		}
336
-		if(isset($this->captionCallback) && \is_callable($this->captionCallback)){
336
+		if (isset($this->captionCallback) && \is_callable($this->captionCallback)) {
337 337
 			$callback=$this->captionCallback;
338
-			$callback($captions,$this->instance);
338
+			$callback($captions, $this->instance);
339 339
 		}
340 340
 		return $captions;
341 341
 	}
342 342
 
343
-	public function setCaption($index,$caption){
344
-		if(isset($this->captions)===false)
343
+	public function setCaption($index, $caption) {
344
+		if (isset($this->captions)===false)
345 345
 			$this->captions=[];
346 346
 		$this->captions[$index]=$caption;
347 347
 		return $this;
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
 	 * @param callable $callback function called after the field compilation
360 360
 	 * @return InstanceViewer
361 361
 	 */
362
-	public function afterCompile($index,$callback){
362
+	public function afterCompile($index, $callback) {
363 363
 		$this->afterCompile[$index]=$callback;
364 364
 		return $this;
365 365
 	}
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 	}
391 391
 	
392 392
 	public function getSimpleProperties() {
393
-		return array_filter($this->visibleProperties,function($item){
393
+		return array_filter($this->visibleProperties, function($item) {
394 394
 			return !(is_array($item) || is_object($item));
395 395
 		});
396 396
 	}
@@ -412,11 +412,11 @@  discard block
 block discarded – undo
412 412
 	 * @param mixed $groupByFields
413 413
 	 */
414 414
 	public function setGroupByFields($groupByFields) {
415
-		$this->groupByFields = $groupByFields;
415
+		$this->groupByFields=$groupByFields;
416 416
 	}
417 417
 	
418
-	public function getGroupByFieldsCount(){
419
-		if(is_array($this->groupByFields)){
418
+	public function getGroupByFieldsCount() {
419
+		if (is_array($this->groupByFields)) {
420 420
 			return sizeof($this->groupByFields);
421 421
 		}
422 422
 		return 0;
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/menus/HtmlMenu.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -41,12 +41,12 @@  discard block
 block discarded – undo
41 41
 	 * @return HtmlMenu
42 42
 	 */
43 43
 	public function setType($type="") {
44
-		return $this->addToPropertyCtrl("class", $type, array ("","item","text" ));
44
+		return $this->addToPropertyCtrl("class", $type, array("", "item", "text"));
45 45
 	}
46 46
 
47 47
 	public function setActiveItem($index) {
48 48
 		$item=$this->getItem($index);
49
-		if ($item !== null) {
49
+		if ($item!==null) {
50 50
 			$item->addToProperty("class", "active");
51 51
 		}
52 52
 		return $this;
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
 	private function getItemToInsert($item) {
56 56
 		if ($item instanceof HtmlInput || $item instanceof HtmlImg || $item instanceof HtmlIcon || $item instanceof HtmlButtonGroups || $item instanceof HtmlButton || $item instanceof HtmlLabel || $item instanceof HtmlDropdown) {
57
-			$itemO=new HtmlMenuItem("item-" . $this->identifier . "-" . \sizeof($this->content) , $item);
57
+			$itemO=new HtmlMenuItem("item-".$this->identifier."-".\sizeof($this->content), $item);
58 58
 			$itemO->addClass("no-active");
59 59
 			$item=$itemO;
60 60
 		}
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
 	private function afterInsert($item) {
65 65
 		if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false)
66
-			$item->addToPropertyCtrl("class", "item", array ("item" ));
66
+			$item->addToPropertyCtrl("class", "item", array("item"));
67 67
 		else {
68 68
 			$this->setSecondary();
69 69
 		}
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	public function addItem($item) {
80 80
 		$number=$item;
81 81
 		$item=parent::addItem($this->getItemToInsert($item));
82
-		if(\is_int($number))
82
+		if (\is_int($number))
83 83
 			$item->setProperty("data-page", $number);
84 84
 		return $this->afterInsert($item);
85 85
 	}
@@ -97,15 +97,15 @@  discard block
 block discarded – undo
97 97
 
98 98
 	public function generateMenuAsItem($menu, $header=null) {
99 99
 		$count=$this->count();
100
-		$item=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "div");
100
+		$item=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "div");
101 101
 		if (isset($header)) {
102
-			$headerItem=new HtmlSemDoubleElement("item-header-" . $this->identifier . "-" . $count, "div", "header");
102
+			$headerItem=new HtmlSemDoubleElement("item-header-".$this->identifier."-".$count, "div", "header");
103 103
 			$headerItem->setContent($header);
104 104
 			$item->addContent($headerItem);
105 105
 			$this->_itemHeader=$headerItem;
106 106
 		}
107
-		if(\is_array($menu)){
108
-			$menu=new HtmlMenu("menu-" . $this->identifier . "-" . $count,$menu);
107
+		if (\is_array($menu)) {
108
+			$menu=new HtmlMenu("menu-".$this->identifier."-".$count, $menu);
109 109
 		}
110 110
 		$menu->setClass("menu");
111 111
 		$item->addContent($menu);
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 		$value=new HtmlSemDoubleElement($identifier, "a", "browse item", $value);
121 121
 		$value->addContent(new HtmlIcon("", "dropdown"));
122 122
 		$value=$this->addItem($value);
123
-		$popup=new HtmlPopup($value, "popup-" . $this->identifier . "-" . $this->count(), $content);
123
+		$popup=new HtmlPopup($value, "popup-".$this->identifier."-".$this->count(), $content);
124 124
 		$popup->setFlowing()->setPosition("bottom left")->setOn("click");
125 125
 		$this->wrap("", $popup);
126 126
 		return $popup;
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 	public function addDropdownAsItem($value, $items=NULL) {
130 130
 		$dd=$value;
131 131
 		if (\is_string($value)) {
132
-			$dd=new HtmlDropdown("dropdown-" . $this->identifier . "-" . $this->count(), $value, $items);
132
+			$dd=new HtmlDropdown("dropdown-".$this->identifier."-".$this->count(), $value, $items);
133 133
 		}
134 134
 		$this->addItem($dd);
135 135
 		return $dd;
@@ -142,14 +142,14 @@  discard block
 block discarded – undo
142 142
 	 * @see HtmlCollection::createItem()
143 143
 	 */
144 144
 	protected function createItem($value) {
145
-		$itemO=new HtmlMenuItem($this->identifier."-item-" . \sizeof($this->content),"");
145
+		$itemO=new HtmlMenuItem($this->identifier."-item-".\sizeof($this->content), "");
146 146
 		$itemO->setTagName("a");
147 147
 		$itemO->setContent($value);
148 148
 		return $itemO;
149 149
 	}
150 150
 
151 151
 	public function setSecondary($value=true) {
152
-		if($value)
152
+		if ($value)
153 153
 			$this->addToProperty("class", "secondary");
154 154
 		else
155 155
 			$this->removePropertyValue("class", "secondary");
@@ -157,28 +157,28 @@  discard block
 block discarded – undo
157 157
 	}
158 158
 
159 159
 	public function setVertical() {
160
-		return $this->addToPropertyCtrl("class", "vertical", array ("vertical" ));
160
+		return $this->addToPropertyCtrl("class", "vertical", array("vertical"));
161 161
 	}
162 162
 
163 163
 	public function setPosition($value="right") {
164
-		return $this->addToPropertyCtrl("class", $value, array ("right","left" ));
164
+		return $this->addToPropertyCtrl("class", $value, array("right", "left"));
165 165
 	}
166 166
 
167 167
 	public function setPointing($value=Direction::NONE) {
168
-		return $this->addToPropertyCtrl("class", $value . " pointing", Direction::getConstantValues("pointing"));
168
+		return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing"));
169 169
 	}
170 170
 
171 171
 	public function asTab($vertical=false) {
172
-		$this->apply(function (HtmlDoubleElement &$item) {
172
+		$this->apply(function(HtmlDoubleElement &$item) {
173 173
 			$item->setTagName("a");
174 174
 		});
175
-		if ($vertical === true)
175
+		if ($vertical===true)
176 176
 			$this->setVertical();
177 177
 		return $this->addToProperty("class", "tabular");
178 178
 	}
179 179
 
180 180
 	public function asPagination() {
181
-		$this->apply(function (HtmlDoubleElement &$item) {
181
+		$this->apply(function(HtmlDoubleElement &$item) {
182 182
 			$item->setTagName("a");
183 183
 		});
184 184
 		return $this->addToProperty("class", "pagination");
@@ -215,10 +215,10 @@  discard block
 block discarded – undo
215 215
 	 */
216 216
 	public function setWidth($width) {
217 217
 		if (\is_int($width)) {
218
-			$width=Wide::getConstants()["W" . $width];
218
+			$width=Wide::getConstants()["W".$width];
219 219
 		}
220 220
 		$this->addToPropertyCtrl("class", $width, Wide::getConstants());
221
-		return $this->addToPropertyCtrl("class", "item", array ("item" ));
221
+		return $this->addToPropertyCtrl("class", "item", array("item"));
222 222
 	}
223 223
 
224 224
 	public function addImage($identifier, $src="", $alt="") {
@@ -233,14 +233,14 @@  discard block
 block discarded – undo
233 233
 		return $this->_itemHeader;
234 234
 	}
235 235
 
236
-	public function setHasContainer(){
237
-		return $this->wrapContent("<div class='ui container'>","</div>");
236
+	public function setHasContainer() {
237
+		return $this->wrapContent("<div class='ui container'>", "</div>");
238 238
 	}
239 239
 
240
-	public function run(JsUtils $js){
241
-		if($this->identifier!=="" && !isset($this->_bsComponent))
242
-			$this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false);
243
-		$result= parent::run($js);
240
+	public function run(JsUtils $js) {
241
+		if ($this->identifier!=="" && !isset($this->_bsComponent))
242
+			$this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}', false, false);
243
+		$result=parent::run($js);
244 244
 		return $result->setItemSelector(">.item");
245 245
 	}
246 246
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/modules/HtmlDropdown.php 1 patch
Spacing   +101 added lines, -101 removed lines patch added patch discarded remove patch
@@ -14,29 +14,29 @@  discard block
 block discarded – undo
14 14
 use Ajax\common\html\HtmlDoubleElement;
15 15
 
16 16
 class HtmlDropdown extends HtmlSemDoubleElement {
17
-	use FieldTrait,LabeledIconTrait {
17
+	use FieldTrait, LabeledIconTrait {
18 18
 		addIcon as addIconP;
19 19
 	}
20 20
 	protected $mClass="menu";
21 21
 	protected $mTagName="div";
22
-	protected $items=array ();
23
-	protected $_params=array("action"=>"nothing","on"=>"hover","showOnFocus"=>false);
22
+	protected $items=array();
23
+	protected $_params=array("action"=>"nothing", "on"=>"hover", "showOnFocus"=>false);
24 24
 	protected $input;
25 25
 	protected $value;
26 26
 	protected $_associative;
27 27
 	protected $_multiple;
28 28
 
29
-	public function __construct($identifier, $value="", $items=array(),$associative=true) {
29
+	public function __construct($identifier, $value="", $items=array(), $associative=true) {
30 30
 		parent::__construct($identifier, "div");
31 31
 		$this->_template=include dirname(__FILE__).'/../templates/tplDropdown.php';
32 32
 		$this->setProperty("class", "ui dropdown");
33 33
 		$this->_multiple=false;
34 34
 		$content=[];
35
-		if(isset($value)){
36
-			if($value instanceof HtmlSemDoubleElement){
35
+		if (isset($value)) {
36
+			if ($value instanceof HtmlSemDoubleElement) {
37 37
 				$text=$value;
38
-			}else{
39
-				$text=new HtmlSemDoubleElement("text-".$this->identifier,"div");
38
+			} else {
39
+				$text=new HtmlSemDoubleElement("text-".$this->identifier, "div");
40 40
 				$text->setClass("text");
41 41
 				$this->setValue($value);
42 42
 			}
@@ -49,33 +49,33 @@  discard block
 block discarded – undo
49 49
 		$this->addItems($items);
50 50
 	}
51 51
 
52
-	public function getField(){
52
+	public function getField() {
53 53
 		return $this->input;
54 54
 	}
55 55
 
56
-	public function getDataField(){
56
+	public function getDataField() {
57 57
 		return $this->input;
58 58
 	}
59 59
 
60
-	public function addItem($item,$value=NULL,$image=NULL,$description=NULL){
61
-		$itemO=$this->beforeAddItem($item,$value,$image,$description);
60
+	public function addItem($item, $value=NULL, $image=NULL, $description=NULL) {
61
+		$itemO=$this->beforeAddItem($item, $value, $image, $description);
62 62
 		$this->items[]=$itemO;
63 63
 		return $itemO;
64 64
 	}
65 65
 
66
-	public function addIcon($icon,$before=true,$labeled=false){
66
+	public function addIcon($icon, $before=true, $labeled=false) {
67 67
 		$this->removeArrow();
68
-		$this->addIconP($icon,$before,$labeled);
68
+		$this->addIconP($icon, $before, $labeled);
69 69
 		$elm=$this->getElementById("text-".$this->identifier, $this->content);
70
-		if(isset($elm)){
70
+		if (isset($elm)) {
71 71
 			$elm->setWrapAfter("");
72 72
 		}
73 73
 		return $this;
74 74
 	}
75 75
 
76
-	public function addIcons($icons){
76
+	public function addIcons($icons) {
77 77
 		$count=$this->count();
78
-		for ($i=0;$i<\sizeof($icons) && $i<$count;$i++){
78
+		for ($i=0; $i<\sizeof($icons) && $i<$count; $i++) {
79 79
 			$this->getItem($i)->addIcon($icons[$i]);
80 80
 		}
81 81
 	}
@@ -86,33 +86,33 @@  discard block
 block discarded – undo
86 86
 	 * @param int $position
87 87
 	 * @return HtmlDropdownItem
88 88
 	 */
89
-	public function insertItem($item,$position=0){
89
+	public function insertItem($item, $position=0) {
90 90
 		$itemO=$this->beforeAddItem($item);
91
-		 $start = array_slice($this->items, 0, $position);
92
-		 $end = array_slice($this->items, $position);
93
-		 $start[] = $item;
91
+		 $start=array_slice($this->items, 0, $position);
92
+		 $end=array_slice($this->items, $position);
93
+		 $start[]=$item;
94 94
 		 $this->items=array_merge($start, $end);
95 95
 		 return $itemO;
96 96
 	}
97 97
 
98
-	protected function removeArrow(){
99
-		if(\sizeof($this->content)>1){
98
+	protected function removeArrow() {
99
+		if (\sizeof($this->content)>1) {
100 100
 			unset($this->content["arrow"]);
101 101
 			$this->content=\array_values($this->content);
102 102
 		}
103 103
 	}
104 104
 
105
-	protected function beforeAddItem($item,$value=NULL,$image=NULL,$description=NULL){
105
+	protected function beforeAddItem($item, $value=NULL, $image=NULL, $description=NULL) {
106 106
 		$itemO=$item;
107
-		if(\is_array($item)){
107
+		if (\is_array($item)) {
108 108
 			$description=JArray::getValue($item, "description", 3);
109 109
 			$value=JArray::getValue($item, "value", 1);
110 110
 			$image=JArray::getValue($item, "image", 2);
111 111
 			$item=JArray::getValue($item, "item", 0);
112 112
 		}
113
-		if(!$item instanceof HtmlDropdownItem){
114
-			$itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items),$item,$value,$image,$description);
115
-		}elseif($itemO instanceof HtmlDropdownItem){
113
+		if (!$item instanceof HtmlDropdownItem) {
114
+			$itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items), $item, $value, $image, $description);
115
+		}elseif ($itemO instanceof HtmlDropdownItem) {
116 116
 			$this->addToProperty("class", "vertical");
117 117
 		}
118 118
 		return $itemO;
@@ -125,11 +125,11 @@  discard block
 block discarded – undo
125 125
 		$this->addItem($function($object));
126 126
 	}
127 127
 
128
-	public function addInput($name){
129
-		if(!isset($name))
128
+	public function addInput($name) {
129
+		if (!isset($name))
130 130
 			$name="input-".$this->identifier;
131 131
 		$this->setAction("activate");
132
-		$this->input=new HtmlInput($name,"hidden");
132
+		$this->input=new HtmlInput($name, "hidden");
133 133
 		$this->input->setIdentifier("input-".$this->identifier);
134 134
 		return $this->input;
135 135
 	}
@@ -140,15 +140,15 @@  discard block
 block discarded – undo
140 140
 	 * @param string $icon
141 141
 	 * @return HtmlDropdownItem
142 142
 	 */
143
-	public function addSearchInputItem($placeHolder=NULL,$icon=NULL){
144
-		return $this->addItem(HtmlDropdownItem::searchInput($placeHolder,$icon));
143
+	public function addSearchInputItem($placeHolder=NULL, $icon=NULL) {
144
+		return $this->addItem(HtmlDropdownItem::searchInput($placeHolder, $icon));
145 145
 	}
146 146
 
147 147
 	/**
148 148
 	 * Adds a divider item
149 149
 	 * @return HtmlDropdownItem
150 150
 	 */
151
-	public function addDividerItem(){
151
+	public function addDividerItem() {
152 152
 		return $this->addItem(HtmlDropdownItem::divider());
153 153
 	}
154 154
 
@@ -158,8 +158,8 @@  discard block
 block discarded – undo
158 158
 	 * @param string $icon
159 159
 	 * @return HtmlDropdownItem
160 160
 	 */
161
-	public function addHeaderItem($caption=NULL,$icon=NULL){
162
-		return $this->addItem(HtmlDropdownItem::header($caption,$icon));
161
+	public function addHeaderItem($caption=NULL, $icon=NULL) {
162
+		return $this->addItem(HtmlDropdownItem::header($caption, $icon));
163 163
 	}
164 164
 
165 165
 	/**
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 	 * @param string $color
169 169
 	 * @return HtmlDropdownItem
170 170
 	 */
171
-	public function addCircularLabelItem($caption,$color){
171
+	public function addCircularLabelItem($caption, $color) {
172 172
 		return $this->addItem(HtmlDropdownItem::circular($caption, $color));
173 173
 	}
174 174
 
@@ -177,17 +177,17 @@  discard block
 block discarded – undo
177 177
 	 * @param string $image
178 178
 	 * @return \Ajax\semantic\html\content\HtmlDropdownItem
179 179
 	 */
180
-	public function addMiniAvatarImageItem($caption,$image){
180
+	public function addMiniAvatarImageItem($caption, $image) {
181 181
 		return $this->addItem(HtmlDropdownItem::avatar($caption, $image));
182 182
 	}
183 183
 
184
-	public function addItems($items){
185
-		if(\is_array($items) && $this->_associative){
186
-			foreach ($items as $k=>$v){
184
+	public function addItems($items) {
185
+		if (\is_array($items) && $this->_associative) {
186
+			foreach ($items as $k=>$v) {
187 187
 				$this->addItem($v)->setData($k);
188 188
 			}
189
-		}else{
190
-			foreach ($items as $item){
189
+		} else {
190
+			foreach ($items as $item) {
191 191
 				$this->addItem($item);
192 192
 			}
193 193
 		}
@@ -199,99 +199,99 @@  discard block
 block discarded – undo
199 199
 	 * @param array|mixed $values
200 200
 	 * @return $this
201 201
 	 */
202
-	public function setPropertyValues($property,$values){
202
+	public function setPropertyValues($property, $values) {
203 203
 		$i=0;
204
-		if(\is_array($values)===false){
205
-			$values=\array_fill(0, $this->count(),$values);
204
+		if (\is_array($values)===false) {
205
+			$values=\array_fill(0, $this->count(), $values);
206 206
 		}
207
-		foreach ($values as $value){
207
+		foreach ($values as $value) {
208 208
 			$c=$this->items[$i++];
209
-			if(isset($c)){
210
-				$c->setProperty($property,$value);
209
+			if (isset($c)) {
210
+				$c->setProperty($property, $value);
211 211
 			}
212
-			else{
212
+			else {
213 213
 				return $this;
214 214
 			}
215 215
 		}
216 216
 		return $this;
217 217
 	}
218 218
 
219
-	public function each($callBack){
220
-		foreach ($this->items as $index=>$value){
221
-			$callBack($index,$value);
219
+	public function each($callBack) {
220
+		foreach ($this->items as $index=>$value) {
221
+			$callBack($index, $value);
222 222
 		}
223 223
 		return $this;
224 224
 	}
225 225
 
226
-	public function getItem($index){
226
+	public function getItem($index) {
227 227
 		return $this->items[$index];
228 228
 	}
229 229
 
230 230
 	/**
231 231
 	 * @return int
232 232
 	 */
233
-	public function count(){
233
+	public function count() {
234 234
 		return \sizeof($this->items);
235 235
 	}
236 236
 	/**
237 237
 	 * @param boolean $dropdown
238 238
 	 */
239
-	public function asDropdown($dropdown){
240
-		if($dropdown===false){
239
+	public function asDropdown($dropdown) {
240
+		if ($dropdown===false) {
241 241
 			$this->_template=include dirname(__FILE__).'/../templates/tplDropdownMenu.php';
242 242
 			$dropdown="menu";
243
-		}else{
243
+		} else {
244 244
 			$dropdown="dropdown";
245 245
 			$this->mClass="menu";
246 246
 		}
247
-		return $this->addToPropertyCtrl("class", $dropdown,array("menu","dropdown"));
247
+		return $this->addToPropertyCtrl("class", $dropdown, array("menu", "dropdown"));
248 248
 	}
249 249
 
250
-	public function setVertical(){
251
-		return $this->addToPropertyCtrl("class", "vertical",array("vertical"));
250
+	public function setVertical() {
251
+		return $this->addToPropertyCtrl("class", "vertical", array("vertical"));
252 252
 	}
253 253
 
254
-	public function setInline(){
255
-		return $this->addToPropertyCtrl("class", "inline",["inline"]);
254
+	public function setInline() {
255
+		return $this->addToPropertyCtrl("class", "inline", ["inline"]);
256 256
 	}
257 257
 
258
-	public function setSimple(){
259
-		return $this->addToPropertyCtrl("class", "simple",array("simple"));
258
+	public function setSimple() {
259
+		return $this->addToPropertyCtrl("class", "simple", array("simple"));
260 260
 	}
261 261
 
262
-	public function asButton($floating=false){
262
+	public function asButton($floating=false) {
263 263
 		$this->removeArrow();
264
-		if($floating)
264
+		if ($floating)
265 265
 			$this->addToProperty("class", "floating");
266 266
 		$this->removePropertyValue("class", "selection");
267 267
 		return $this->addToProperty("class", "button");
268 268
 	}
269 269
 
270
-	public function asSelect($name=NULL,$multiple=false,$selection=true){
270
+	public function asSelect($name=NULL, $multiple=false, $selection=true) {
271 271
 		$this->_multiple=$multiple;
272
-		if(isset($name))
272
+		if (isset($name))
273 273
 			$this->addInput($name);
274
-		if($multiple){
274
+		if ($multiple) {
275 275
 			$this->addToProperty("class", "multiple");
276 276
 		}
277
-		if ($selection){
278
-			if($this->propertyContains("class", "button")===false)
279
-				$this->addToPropertyCtrl("class", "selection",array("selection"));
277
+		if ($selection) {
278
+			if ($this->propertyContains("class", "button")===false)
279
+				$this->addToPropertyCtrl("class", "selection", array("selection"));
280 280
 		}
281 281
 		return $this;
282 282
 	}
283 283
 
284
-	public function asSearch($name=NULL,$multiple=false,$selection=true){
285
-		$this->asSelect($name,$multiple,$selection);
284
+	public function asSearch($name=NULL, $multiple=false, $selection=true) {
285
+		$this->asSelect($name, $multiple, $selection);
286 286
 		return $this->addToProperty("class", "search");
287 287
 	}
288 288
 
289
-	public function setSelect($name=NULL,$multiple=false){
289
+	public function setSelect($name=NULL, $multiple=false) {
290 290
 		$this->_template='<%tagName% id="%identifier%" %properties%>%items%</%tagName%>';
291
-		if(!isset($name))
291
+		if (!isset($name))
292 292
 			$name="select-".$this->identifier;
293 293
 		$this->input=null;
294
-		if($multiple){
294
+		if ($multiple) {
295 295
 			$this->setProperty("multiple", true);
296 296
 			$this->addToProperty("class", "multiple");
297 297
 		}
@@ -299,42 +299,42 @@  discard block
 block discarded – undo
299 299
 		$this->tagName="select";
300 300
 		$this->setProperty("name", $name);
301 301
 		$this->content=null;
302
-		foreach ($this->items as $item){
302
+		foreach ($this->items as $item) {
303 303
 			$item->asOption();
304 304
 		}
305 305
 		return $this;
306 306
 	}
307 307
 
308
-	public function asSubmenu($pointing=NULL){
308
+	public function asSubmenu($pointing=NULL) {
309 309
 		$this->setClass("ui dropdown link item");
310
-		if(isset($pointing)){
310
+		if (isset($pointing)) {
311 311
 			$this->setPointing($pointing);
312 312
 		}
313 313
 		return $this;
314 314
 	}
315 315
 
316
-	public function setPointing($value=Direction::NONE){
317
-		return $this->addToPropertyCtrl("class", $value." pointing",Direction::getConstantValues("pointing"));
316
+	public function setPointing($value=Direction::NONE) {
317
+		return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing"));
318 318
 	}
319 319
 
320
-	public function setValue($value){
320
+	public function setValue($value) {
321 321
 		$this->value=$value;
322 322
 		return $this;
323 323
 	}
324 324
 	
325
-	public function setDefaultText($text){
326
-		$this->content["text"]=new HtmlSemDoubleElement("","div","default text",$text);
325
+	public function setDefaultText($text) {
326
+		$this->content["text"]=new HtmlSemDoubleElement("", "div", "default text", $text);
327 327
 	}
328 328
 	
329
-	private function applyValue(){
329
+	private function applyValue() {
330 330
 		$value=$this->value;
331
-		if(isset($this->input) && isset($value)){
331
+		if (isset($this->input) && isset($value)) {
332 332
 			$this->input->setProperty("value", $value);
333
-		}else{
333
+		} else {
334 334
 			$this->setProperty("value", $value);
335 335
 		}
336 336
 			$textElement=$this->getElementById("text-".$this->identifier, $this->content);
337
-			if(isset($textElement) && ($textElement instanceof HtmlDoubleElement) && !$this->_multiple)
337
+			if (isset($textElement) && ($textElement instanceof HtmlDoubleElement) && !$this->_multiple)
338 338
 				$textElement->setContent($value);
339 339
 		return $this;
340 340
 	}
@@ -344,9 +344,9 @@  discard block
 block discarded – undo
344 344
 	 * @see BaseHtml::run()
345 345
 	 */
346 346
 	public function run(JsUtils $js) {
347
-		if($this->propertyContains("class", "simple")===false){
348
-			if(isset($this->_bsComponent)===false){
349
-				$this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier,$this->_params);
347
+		if ($this->propertyContains("class", "simple")===false) {
348
+			if (isset($this->_bsComponent)===false) {
349
+				$this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier, $this->_params);
350 350
 				$this->_bsComponent->setItemSelector(".item");
351 351
 			}
352 352
 			$this->addEventsOnRun($js);
@@ -354,41 +354,41 @@  discard block
 block discarded – undo
354 354
 		}
355 355
 	}
356 356
 
357
-	public function setCompact(){
357
+	public function setCompact() {
358 358
 		return $this->addToPropertyCtrl("class", "compact", array("compact"));
359 359
 	}
360 360
 
361
-	public function setAction($action){
361
+	public function setAction($action) {
362 362
 		$this->_params["action"]=$action;
363 363
 	}
364 364
 
365
-	public function setOn($on){
365
+	public function setOn($on) {
366 366
 		$this->_params["on"]=$on;
367 367
 	}
368 368
 
369
-	public function setShowOnFocus($value){
369
+	public function setShowOnFocus($value) {
370 370
 		$this->_params["showOnFocus"]=$value;
371 371
 	}
372 372
 
373
-	public function setFullTextSearch($value){
373
+	public function setFullTextSearch($value) {
374 374
 		$this->_params["fullTextSearch"]=$value;
375 375
 	}
376 376
 
377 377
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
378 378
 		$this->applyValue();
379
-		return parent::compile($js,$view);
379
+		return parent::compile($js, $view);
380 380
 	}
381 381
 
382 382
 	public function getInput() {
383 383
 		return $this->input;
384 384
 	}
385 385
 
386
-	public function setIcon($icon="dropdown"){
386
+	public function setIcon($icon="dropdown") {
387 387
 		$this->content["arrow"]=new HtmlIcon($this->identifier."-icon", $icon);
388 388
 		return $this;
389 389
 	}
390 390
 
391
-	public function jsAddItem($caption){
391
+	public function jsAddItem($caption) {
392 392
 		$js="var first=$('#{$this->identifier} .item').first();if(first!=undefined){var new =first.clone();first.parent().append(new);first.html('{$caption}};')";
393 393
 		return $js;
394 394
 	}
Please login to merge, or discard this patch.