Completed
Push — master ( 030ef0...22ba15 )
by Jean-Christophe
03:09
created
Ajax/semantic/html/collections/form/HtmlFormInput.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -7,17 +7,17 @@
 block discarded – undo
7 7
 use Ajax\semantic\html\elements\HtmlInput;
8 8
 
9 9
 class HtmlFormInput extends HtmlFormField {
10
-	use TextFieldsTrait,FieldTrait;
10
+	use TextFieldsTrait, FieldTrait;
11 11
 
12
-	public function __construct($identifier, $label=NULL,$type="text",$value=NULL,$placeholder=NULL) {
13
-		if(!isset($placeholder) && $type==="text")
12
+	public function __construct($identifier, $label=NULL, $type="text", $value=NULL, $placeholder=NULL) {
13
+		if (!isset($placeholder) && $type==="text")
14 14
 			$placeholder=$label;
15
-		parent::__construct("field-".$identifier, new HtmlInput($identifier,$type,$value,$placeholder), $label);
15
+		parent::__construct("field-".$identifier, new HtmlInput($identifier, $type, $value, $placeholder), $label);
16 16
 	}
17 17
 
18
-	public function getDataField(){
19
-		$field= $this->getField();
20
-		if($field instanceof HtmlInput)
18
+	public function getDataField() {
19
+		$field=$this->getField();
20
+		if ($field instanceof HtmlInput)
21 21
 			$field=$field->getField();
22 22
 		return $field;
23 23
 	}
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlGrid.php 1 patch
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
 	}
37 37
 
38 38
 	public function asSegment() {
39
-		return $this->addToPropertyCtrl("class", "segment", array ("segment" ));
39
+		return $this->addToPropertyCtrl("class", "segment", array("segment"));
40 40
 	}
41 41
 
42 42
 	public function asContainer() {
43
-		return $this->addToPropertyCtrl("class", "container", array ("container" ));
43
+		return $this->addToPropertyCtrl("class", "container", array("container"));
44 44
 	}
45 45
 
46 46
 	/**
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
 	 * @param int $wide
49 49
 	 */
50 50
 	public function setWide($wide) {
51
-		if(isset(Wide::getConstants()["W" . $wide])){
52
-			$wide=Wide::getConstants()["W" . $wide];
51
+		if (isset(Wide::getConstants()["W".$wide])) {
52
+			$wide=Wide::getConstants()["W".$wide];
53 53
 			$this->addToPropertyCtrl("class", $wide, Wide::getConstants());
54
-			return $this->addToPropertyCtrl("class", "column", array ("column" ));
54
+			return $this->addToPropertyCtrl("class", "column", array("column"));
55 55
 		}
56 56
 		return $this;
57 57
 	}
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
 	 * @return mixed
72 72
 	 */
73 73
 	public function addRow($colsCount=NULL) {
74
-		$rowCount=$this->rowCount() + 1;
74
+		$rowCount=$this->rowCount()+1;
75 75
 		$this->setRowsCount($rowCount, $colsCount, true);
76
-		return $this->content[$rowCount - 1];
76
+		return $this->content[$rowCount-1];
77 77
 	}
78 78
 
79 79
 	/**
@@ -82,10 +82,10 @@  discard block
 block discarded – undo
82 82
 	 * @return mixed|\Ajax\semantic\html\collections\HtmlGrid
83 83
 	 */
84 84
 	public function addCol($width=NULL) {
85
-		$colCount=$this->colCount() + 1;
85
+		$colCount=$this->colCount()+1;
86 86
 		$this->setColsCount($colCount, true, $width);
87 87
 		if ($this->hasOnlyCols($this->count()))
88
-			return $this->content[$colCount - 1];
88
+			return $this->content[$colCount-1];
89 89
 		return $this;
90 90
 	}
91 91
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	 * @return \Ajax\semantic\html\collections\HtmlGrid
96 96
 	 */
97 97
 	public function addCols($sizes=array()) {
98
-		foreach ( $sizes as $size ) {
98
+		foreach ($sizes as $size) {
99 99
 			$this->addCol($size);
100 100
 		}
101 101
 		return $this;
@@ -109,19 +109,19 @@  discard block
 block discarded – undo
109 109
 	 */
110 110
 	public function setRowsCount($rowsCount, $colsCount=NULL, $force=false) {
111 111
 		$count=$this->count();
112
-		if ($rowsCount < 2 && $force === false) {
113
-			for($i=$count; $i < $colsCount; $i++) {
114
-				$this->addItem(new HtmlGridCol("col-" . $this->identifier . "-" . $i));
112
+		if ($rowsCount<2 && $force===false) {
113
+			for ($i=$count; $i<$colsCount; $i++) {
114
+				$this->addItem(new HtmlGridCol("col-".$this->identifier."-".$i));
115 115
 			}
116 116
 		} else {
117 117
 			if ($this->hasOnlyCols($count)) {
118 118
 				$tmpContent=$this->content;
119 119
 				$item=$this->addItem($colsCount);
120 120
 				$item->setContent($tmpContent);
121
-				$this->content=array ();
121
+				$this->content=array();
122 122
 				$count=1;
123 123
 			}
124
-			for($i=$count; $i < $rowsCount; $i++) {
124
+			for ($i=$count; $i<$rowsCount; $i++) {
125 125
 				$this->addItem($colsCount);
126 126
 			}
127 127
 		}
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 	}
130 130
 
131 131
 	protected function hasOnlyCols($count) {
132
-		return $count > 0 && $this->content[0] instanceof HtmlGridCol;
132
+		return $count>0 && $this->content[0] instanceof HtmlGridCol;
133 133
 	}
134 134
 
135 135
 	/**
@@ -143,14 +143,14 @@  discard block
 block discarded – undo
143 143
 		if (isset($width)==false) {
144 144
 			$this->setWide($numCols);
145 145
 		}
146
-		if ($toCreate == true) {
146
+		if ($toCreate==true) {
147 147
 			$count=$this->count();
148
-			if ($count == 0 || $this->hasOnlyCols($count)) {
149
-				for($i=$count; $i < $numCols; $i++) {
150
-					$this->addItem(new HtmlGridCol("col-" . $this->identifier . "-" . $i, $width));
148
+			if ($count==0 || $this->hasOnlyCols($count)) {
149
+				for ($i=$count; $i<$numCols; $i++) {
150
+					$this->addItem(new HtmlGridCol("col-".$this->identifier."-".$i, $width));
151 151
 				}
152 152
 			} else {
153
-				for($i=0; $i < $count; $i++) {
153
+				for ($i=0; $i<$count; $i++) {
154 154
 					$this->getItem($i)->setColsCount($numCols);
155 155
 				}
156 156
 			}
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 		$count=$this->count();
187 187
 		if ($this->hasOnlyCols($count))
188 188
 			return $count;
189
-		if ($count > 0)
189
+		if ($count>0)
190 190
 			return $this->getItem(0)->count();
191 191
 		return 0;
192 192
 	}
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	 * @return \Ajax\semantic\html\collections\HtmlGridCol
199 199
 	 */
200 200
 	public function getCell($row, $col) {
201
-		if ($row < 2 && $this->hasOnlyCols($this->count()))
201
+		if ($row<2 && $this->hasOnlyCols($this->count()))
202 202
 			return $this->getItem($col);
203 203
 		$row=$this->getItem($row);
204 204
 		if (isset($row)) {
@@ -213,8 +213,8 @@  discard block
 block discarded – undo
213 213
 	 * @return \Ajax\semantic\html\collections\HtmlGrid
214 214
 	 */
215 215
 	public function setDivided($vertically=false) {
216
-		$value=($vertically === true) ? "vertically divided" : "divided";
217
-		return $this->addToPropertyCtrl("class", $value, array ("divided" ));
216
+		$value=($vertically===true) ? "vertically divided" : "divided";
217
+		return $this->addToPropertyCtrl("class", $value, array("divided"));
218 218
 	}
219 219
 
220 220
 	/**
@@ -223,15 +223,15 @@  discard block
 block discarded – undo
223 223
 	 * @return \Ajax\semantic\html\collections\HtmlGrid
224 224
 	 */
225 225
 	public function setCelled($internally=false) {
226
-		$value=($internally === true) ? "internally celled" : "celled";
227
-		return $this->addToPropertyCtrl("class", $value, array ("celled","internally celled" ));
226
+		$value=($internally===true) ? "internally celled" : "celled";
227
+		return $this->addToPropertyCtrl("class", $value, array("celled", "internally celled"));
228 228
 	}
229 229
 
230 230
 	/**
231 231
 	 * A grid can have its columns centered
232 232
 	 */
233 233
 	public function setCentered() {
234
-		return $this->addToPropertyCtrl("class", "centered", array ("centered" ));
234
+		return $this->addToPropertyCtrl("class", "centered", array("centered"));
235 235
 	}
236 236
 
237 237
 	/**
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
 	 */
250 250
 	public function setPadded($value=NULL) {
251 251
 		if (isset($value))
252
-			$this->addToPropertyCtrl("class", $value, array ("vertically","horizontally" ));
252
+			$this->addToPropertyCtrl("class", $value, array("vertically", "horizontally"));
253 253
 		return $this->addToProperty("class", "padded");
254 254
 	}
255 255
 
@@ -259,12 +259,12 @@  discard block
 block discarded – undo
259 259
 	 * @return \Ajax\semantic\html\collections\HtmlGrid
260 260
 	 */
261 261
 	public function setRelaxed($very=false) {
262
-		$value=($very === true) ? "very relaxed" : "relaxed";
263
-		return $this->addToPropertyCtrl("class", $value, array ("relaxed","very relaxed" ));
262
+		$value=($very===true) ? "very relaxed" : "relaxed";
263
+		return $this->addToPropertyCtrl("class", $value, array("relaxed", "very relaxed"));
264 264
 	}
265 265
 
266 266
 	public function setVerticalAlignment($value=VerticalAlignment::MIDDLE) {
267
-		return $this->addToPropertyCtrl("class", $value . " aligned", VerticalAlignment::getConstantValues("aligned"));
267
+		return $this->addToPropertyCtrl("class", $value." aligned", VerticalAlignment::getConstantValues("aligned"));
268 268
 	}
269 269
 
270 270
 	/**
@@ -274,9 +274,9 @@  discard block
 block discarded – undo
274 274
 	 * @see \Ajax\common\html\HtmlCollection::createItem()
275 275
 	 */
276 276
 	protected function createItem($value) {
277
-		if ($this->_createCols === false)
277
+		if ($this->_createCols===false)
278 278
 			$value=null;
279
-		$item=new HtmlGridRow($this->identifier . "-row-" . ($this->count() + 1), $value, $this->_colSizing, $this->_implicitRows);
279
+		$item=new HtmlGridRow($this->identifier."-row-".($this->count()+1), $value, $this->_colSizing, $this->_implicitRows);
280 280
 		return $item;
281 281
 	}
282 282
 
@@ -286,15 +286,15 @@  discard block
 block discarded – undo
286 286
 	 */
287 287
 	public function setValues($values, $force=true) {
288 288
 		$count=$this->count();
289
-		if ($this->_createCols === false || $force === true) {
290
-			for($i=$count; $i < \sizeof($values); $i++) {
289
+		if ($this->_createCols===false || $force===true) {
290
+			for ($i=$count; $i<\sizeof($values); $i++) {
291 291
 				$colSize=\sizeof($values[$i]);
292
-				$this->addItem(new HtmlGridRow($this->identifier . "-row-" . ($this->count() + 1), $colSize, $this->_colSizing, $this->_implicitRows));
292
+				$this->addItem(new HtmlGridRow($this->identifier."-row-".($this->count()+1), $colSize, $this->_colSizing, $this->_implicitRows));
293 293
 			}
294 294
 		}
295
-		$count=\min(array ($this->count(),\sizeof($values) ));
296
-		for($i=0; $i < $count; $i++) {
297
-			$this->content[$i]->setValues($values[$i], $this->_createCols === false);
295
+		$count=\min(array($this->count(), \sizeof($values)));
296
+		for ($i=0; $i<$count; $i++) {
297
+			$this->content[$i]->setValues($values[$i], $this->_createCols===false);
298 298
 		}
299 299
 	}
300 300
 
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/traits/CheckboxTrait.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -33,17 +33,17 @@  discard block
 block discarded – undo
33 33
 		return $this->getHtmlCk()->attachEvents($events);
34 34
 	}
35 35
 
36
-	public function getField(){
36
+	public function getField() {
37 37
 		return $this->content["field"]->getField();
38 38
 	}
39 39
 
40
-	public function getHtmlCk(){
40
+	public function getHtmlCk() {
41 41
 		return $this->content["field"];
42 42
 	}
43 43
 
44
-	public function getDataField(){
45
-		$field= $this->getField();
46
-		if($field instanceof AbstractCheckbox)
44
+	public function getDataField() {
45
+		$field=$this->getField();
46
+		if ($field instanceof AbstractCheckbox)
47 47
 			$field=$field->getField();
48 48
 			return $field;
49 49
 	}
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
 	 * @param boolean $value
54 54
 	 * @return \Ajax\semantic\html\collections\form\traits\CheckboxTrait
55 55
 	 */
56
-	public function setChecked($value=true){
57
-		if($value===true){
56
+	public function setChecked($value=true) {
57
+		if ($value===true) {
58 58
 			$this->getDataField()->setProperty("checked", "checked");
59
-		}else{
59
+		} else {
60 60
 			$this->getDataField()->removeProperty("checked");
61 61
 		}
62 62
 		return $this;
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlButton.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	}
56 56
 
57 57
 	public function setFocusable($value=true) {
58
-		if ($value === true)
58
+		if ($value===true)
59 59
 			$this->setProperty("tabindex", "0");
60 60
 		else {
61 61
 			$this->removeProperty("tabindex");
@@ -65,14 +65,14 @@  discard block
 block discarded – undo
65 65
 
66 66
 	public function setAnimated($content, $animation="") {
67 67
 		$this->setTagName("div");
68
-		$this->addToProperty("class", "animated " . $animation);
69
-		$visible=new HtmlSemDoubleElement("visible-" . $this->identifier, "div");
68
+		$this->addToProperty("class", "animated ".$animation);
69
+		$visible=new HtmlSemDoubleElement("visible-".$this->identifier, "div");
70 70
 		$visible->setClass("visible content");
71 71
 		$visible->setContent($this->content);
72
-		$hidden=new HtmlSemDoubleElement("hidden-" . $this->identifier, "div");
72
+		$hidden=new HtmlSemDoubleElement("hidden-".$this->identifier, "div");
73 73
 		$hidden->setClass("hidden content");
74 74
 		$hidden->setContent($content);
75
-		$this->content=array ($visible,$hidden );
75
+		$this->content=array($visible, $hidden);
76 76
 		return $hidden;
77 77
 	}
78 78
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	public function asIcon($icon) {
85 85
 		$iconO=$icon;
86 86
 		if (\is_string($icon)) {
87
-			$iconO=new HtmlIcon("icon-" . $this->identifier, $icon);
87
+			$iconO=new HtmlIcon("icon-".$this->identifier, $icon);
88 88
 		}
89 89
 		$this->addToProperty("class", "icon");
90 90
 		$this->content=$iconO;
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
 	public function addLabel($label, $before=false, $icon=NULL) {
107 107
 		$this->tagName="div";
108 108
 		$this->addToProperty("class", "labeled");
109
-		$this->content=new HtmlButton("button-" . $this->identifier, $this->content);
109
+		$this->content=new HtmlButton("button-".$this->identifier, $this->content);
110 110
 		$this->content->setTagName("div");
111
-		$label=new HtmlLabel("label-" . $this->identifier, $label, $icon,"a");
111
+		$label=new HtmlLabel("label-".$this->identifier, $label, $icon, "a");
112 112
 		$label->setBasic();
113 113
 		$this->addContent($label, $before);
114 114
 		return $label;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	 */
121 121
 	public function fromArray($array) {
122 122
 		$array=parent::fromArray($array);
123
-		foreach ( $array as $key => $value ) {
123
+		foreach ($array as $key => $value) {
124 124
 			$this->setProperty($key, $value);
125 125
 		}
126 126
 		return $array;
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 	}
176 176
 
177 177
 	public static function social($identifier, $social, $value=NULL) {
178
-		if ($value === NULL)
178
+		if ($value===NULL)
179 179
 			$value=\ucfirst($social);
180 180
 		$return=new HtmlButton($identifier, $value);
181 181
 		$return->addIcon($social);
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 	}
196 196
 
197 197
 	public function asLink($href=NULL) {
198
-		$lnk=new HtmlLink("lnk-".$this->identifier,$href,$this->content);
198
+		$lnk=new HtmlLink("lnk-".$this->identifier, $href, $this->content);
199 199
 		$this->content=$lnk;
200 200
 		return $this;
201 201
 	}
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/traits/FieldsTrait.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -11,46 +11,46 @@  discard block
 block discarded – undo
11 11
 use Ajax\semantic\html\collections\form\HtmlFormField;
12 12
 
13 13
 trait FieldsTrait {
14
-	public abstract function addFields($fields=NULL,$label=NULL);
14
+	public abstract function addFields($fields=NULL, $label=NULL);
15 15
 	public abstract function addItem($item);
16 16
 
17
-	protected function createItem($value){
18
-		if(\is_array($value)){
19
-			$itemO=new HtmlFormInput(JArray::getDefaultValue($value, "id",""),JArray::getDefaultValue($value, "label",null),JArray::getDefaultValue($value, "type", "text"),JArray::getDefaultValue($value, "value",""),JArray::getDefaultValue($value, "placeholder",JArray::getDefaultValue($value, "label",null)));
17
+	protected function createItem($value) {
18
+		if (\is_array($value)) {
19
+			$itemO=new HtmlFormInput(JArray::getDefaultValue($value, "id", ""), JArray::getDefaultValue($value, "label", null), JArray::getDefaultValue($value, "type", "text"), JArray::getDefaultValue($value, "value", ""), JArray::getDefaultValue($value, "placeholder", JArray::getDefaultValue($value, "label", null)));
20 20
 			return $itemO;
21
-		}elseif(\is_object($value)){
21
+		}elseif (\is_object($value)) {
22 22
 			$itemO=new HtmlFormField("field-".$this->identifier, $value);
23 23
 			return $itemO;
24
-		}else
24
+		} else
25 25
 			return new HtmlFormInput($value);
26 26
 	}
27 27
 
28
-	protected function createCondition($value){
28
+	protected function createCondition($value) {
29 29
 		return \is_object($value)===false || $value instanceof \Ajax\semantic\html\elements\HtmlInput;
30 30
 	}
31 31
 
32
-	public function addInputs($inputs,$fieldslabel=null){
32
+	public function addInputs($inputs, $fieldslabel=null) {
33 33
 		$fields=array();
34
-		foreach ($inputs as $input){
34
+		foreach ($inputs as $input) {
35 35
 			\extract($input);
36
-			$f=new HtmlFormInput("","");
36
+			$f=new HtmlFormInput("", "");
37 37
 			$f->fromArray($input);
38 38
 			$fields[]=$f;
39 39
 		}
40
-		return $this->addFields($fields,$fieldslabel);
40
+		return $this->addFields($fields, $fieldslabel);
41 41
 	}
42 42
 
43
-	public function addFieldRule($index,$type,$prompt=NULL,$value=NULL){
43
+	public function addFieldRule($index, $type, $prompt=NULL, $value=NULL) {
44 44
 		$field=$this->getItem($index);
45
-		if(isset($field)){
46
-			$field->addRule($type,$prompt,$value);
45
+		if (isset($field)) {
46
+			$field->addRule($type, $prompt, $value);
47 47
 		}
48 48
 		return $this;
49 49
 	}
50 50
 
51
-	public function addFieldRules($index,$rules){
51
+	public function addFieldRules($index, $rules) {
52 52
 		$field=$this->getItem($index);
53
-		if(isset($field)){
53
+		if (isset($field)) {
54 54
 			$field->addRules($rules);
55 55
 		}
56 56
 		return $this;
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
 	 * @param boolean $multiple
65 65
 	 * @return \Ajax\common\html\HtmlDoubleElement
66 66
 	 */
67
-	public function addDropdown($identifier,$items=array(), $label=NULL,$value=NULL,$multiple=false){
68
-		return $this->addItem(new HtmlFormDropdown($identifier,$items,$label,$value,$multiple));
67
+	public function addDropdown($identifier, $items=array(), $label=NULL, $value=NULL, $multiple=false) {
68
+		return $this->addItem(new HtmlFormDropdown($identifier, $items, $label, $value, $multiple));
69 69
 	}
70 70
 
71 71
 	/**
@@ -76,23 +76,23 @@  discard block
 block discarded – undo
76 76
 	 * @param string $placeholder
77 77
 	 * @return HtmlFormInput
78 78
 	 */
79
-	public function addInput($identifier, $label=NULL,$type="text",$value=NULL,$placeholder=NULL){
80
-		return $this->addItem(new HtmlFormInput($identifier,$label,$type,$value,$placeholder));
79
+	public function addInput($identifier, $label=NULL, $type="text", $value=NULL, $placeholder=NULL) {
80
+		return $this->addItem(new HtmlFormInput($identifier, $label, $type, $value, $placeholder));
81 81
 	}
82 82
 
83
-	public function addPassword($identifier, $label=NULL){
84
-		return $this->addItem(new HtmlFormInput($identifier,$label,"password","",""));
83
+	public function addPassword($identifier, $label=NULL) {
84
+		return $this->addItem(new HtmlFormInput($identifier, $label, "password", "", ""));
85 85
 	}
86 86
 
87
-	public function addButton($identifier,$value,$cssStyle=NULL,$onClick=NULL){
88
-		return $this->addItem(new HtmlButton($identifier,$value,$cssStyle,$onClick));
87
+	public function addButton($identifier, $value, $cssStyle=NULL, $onClick=NULL) {
88
+		return $this->addItem(new HtmlButton($identifier, $value, $cssStyle, $onClick));
89 89
 	}
90 90
 
91
-	public function addCheckbox($identifier, $label=NULL,$value=NULL,$type=NULL){
92
-		return $this->addItem(new HtmlFormCheckbox($identifier,$label,$value,$type));
91
+	public function addCheckbox($identifier, $label=NULL, $value=NULL, $type=NULL) {
92
+		return $this->addItem(new HtmlFormCheckbox($identifier, $label, $value, $type));
93 93
 	}
94 94
 
95
-	public function addRadio($identifier, $name,$label=NULL,$value=NULL){
96
-		return $this->addItem(new HtmlFormRadio($identifier,$name,$label,$value));
95
+	public function addRadio($identifier, $name, $label=NULL, $value=NULL) {
96
+		return $this->addItem(new HtmlFormRadio($identifier, $name, $label, $value));
97 97
 	}
98 98
 }
99 99
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlMessage.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -30,38 +30,38 @@  discard block
 block discarded – undo
30 30
 	 * @param string|HtmlSemDoubleElement $header
31 31
 	 * @return \Ajax\semantic\html\collections\HtmlMessage
32 32
 	 */
33
-	public function addHeader($header){
33
+	public function addHeader($header) {
34 34
 		$headerO=$header;
35
-		if(\is_string($header)){
36
-			$headerO=new HtmlSemDoubleElement("header-".$this->identifier,"div");
35
+		if (\is_string($header)) {
36
+			$headerO=new HtmlSemDoubleElement("header-".$this->identifier, "div");
37 37
 			$headerO->setClass("header");
38 38
 			$headerO->setContent($header);
39 39
 		}
40
-		return $this->addContent($headerO,true);
40
+		return $this->addContent($headerO, true);
41 41
 	}
42 42
 
43
-	public function addList($elements,$ordered=false){
44
-		$list=new HtmlList("list-".$this->identifier,$elements);
43
+	public function addList($elements, $ordered=false) {
44
+		$list=new HtmlList("list-".$this->identifier, $elements);
45 45
 		$list->setOrdered($ordered);
46 46
 		$list->setClass("ui list");
47 47
 		$this->addContent($list);
48 48
 	}
49 49
 
50
-	public function setIcon($icon){
50
+	public function setIcon($icon) {
51 51
 		$this->addToProperty("class", "icon");
52
-		$this->wrapContent("<div class='content'>","</div>");
52
+		$this->wrapContent("<div class='content'>", "</div>");
53 53
 		$this->icon=new HtmlIcon("icon-".$this->identifier, $icon);
54 54
 		return $this;
55 55
 	}
56 56
 
57
-	public function addLoader($loaderIcon="notched circle"){
57
+	public function addLoader($loaderIcon="notched circle") {
58 58
 		$this->setIcon($loaderIcon);
59 59
 		$this->icon->addToIcon("loading");
60 60
 		return $this;
61 61
 	}
62 62
 
63
-	public function setDismissable($dismiss=true){
64
-		if($dismiss===true)
63
+	public function setDismissable($dismiss=true) {
64
+		if ($dismiss===true)
65 65
 			$this->close=new HtmlIcon("close-".$this->identifier, "close");
66 66
 		else
67 67
 			$this->close=NULL;
@@ -72,27 +72,27 @@  discard block
 block discarded – undo
72 72
 	 * {@inheritDoc}
73 73
 	 * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run()
74 74
 	 */
75
-	public function run(JsUtils $js){
75
+	public function run(JsUtils $js) {
76 76
 		parent::run($js);
77
-		if(isset($this->close)){
77
+		if (isset($this->close)) {
78 78
 			$js->execOn("click", "#".$this->identifier." .close", "$(this).closest('.message').transition('fade')");
79 79
 		}
80 80
 	}
81 81
 
82
-	public function setState($visible=true){
83
-		$visible=($visible===true)?"visible":"hidden";
84
-		return $this->addToPropertyCtrl("class", $visible, array("visible","hidden"));
82
+	public function setState($visible=true) {
83
+		$visible=($visible===true) ? "visible" : "hidden";
84
+		return $this->addToPropertyCtrl("class", $visible, array("visible", "hidden"));
85 85
 	}
86 86
 
87
-	public function setVariation($value="floating"){
88
-		return $this->addToPropertyCtrl("class", $value, array("floating","compact"));
87
+	public function setVariation($value="floating") {
88
+		return $this->addToPropertyCtrl("class", $value, array("floating", "compact"));
89 89
 	}
90 90
 
91
-	public function setStyle($style){
91
+	public function setStyle($style) {
92 92
 		return $this->addToPropertyCtrl("class", $style, Style::getConstants());
93 93
 	}
94 94
 
95
-	public function setError(){
95
+	public function setError() {
96 96
 		return $this->setStyle("error");
97 97
 	}
98 98
 }
99 99
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/Semantic.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
 use Ajax\semantic\traits\SemanticWidgetsTrait;
22 22
 
23 23
 class Semantic extends BaseGui {
24
-	use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait,
25
-	SemanticHtmlModulesTrait,SemanticHtmlViewsTrait,SemanticWidgetsTrait;
24
+	use SemanticComponentsTrait, SemanticHtmlElementsTrait, SemanticHtmlCollectionsTrait,
25
+	SemanticHtmlModulesTrait, SemanticHtmlViewsTrait, SemanticWidgetsTrait;
26 26
 
27 27
 	private $language;
28 28
 
@@ -110,12 +110,12 @@  discard block
 block discarded – undo
110 110
 		return $this->addHtmlComponent(new HtmlSticky($identifier, $content));
111 111
 	}
112 112
 
113
-	public function setLanguage($language){
114
-		if($language!==$this->language){
113
+	public function setLanguage($language) {
114
+		if ($language!==$this->language) {
115 115
 			$file=\realpath(dirname(__FILE__)."/semantic/components/validation/languages/".$language.".js");
116
-			if(\file_exists($file)){
116
+			if (\file_exists($file)) {
117 117
 				$script=\file_get_contents($file);
118
-				$this->js->exec($script,true);
118
+				$this->js->exec($script, true);
119 119
 				$this->language=$language;
120 120
 			}
121 121
 		}
Please login to merge, or discard this patch.
Ajax/common/components/SimpleComponent.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -17,18 +17,18 @@  discard block
 block discarded – undo
17 17
 
18 18
 	public function __construct(JsUtils $js) {
19 19
 		parent::__construct($js);
20
-		$this->events=array ();
20
+		$this->events=array();
21 21
 	}
22 22
 
23 23
 	protected function compileEvents() {
24
-		foreach ( $this->events as $event => $jsCode ) {
25
-			if($event=="execute"){
24
+		foreach ($this->events as $event => $jsCode) {
25
+			if ($event=="execute") {
26 26
 				$this->jquery_code_for_compile []=$jsCode;
27
-			}else if($event=="beforeExecute"){
27
+			} else if ($event=="beforeExecute") {
28 28
 				\array_unshift($this->jquery_code_for_compile, $jsCode);
29
-			}else{
29
+			} else {
30 30
 				$selector=$this->attachTo;
31
-				if(isset($this->itemSelector)){
31
+				if (isset($this->itemSelector)) {
32 32
 					$selector.=" ".$this->itemSelector;
33 33
 				}
34 34
 				$this->jquery_code_for_compile []="$( \"".$selector."\" ).on(\"".$event."\" , function( event, data ) {".$jsCode."});";
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 		$result=implode("\n", $this->jquery_code_for_compile);
41 41
 		$result=str_ireplace("\"%", "", $result);
42 42
 		$result=str_ireplace("%\"", "", $result);
43
-		$result=str_replace(array (
43
+		$result=str_replace(array(
44 44
 				"\\n",
45 45
 				"\\r",
46 46
 				"\\t"
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
 	public function getScript() {
52 52
 		$allParams=$this->params;
53
-		$this->jquery_code_for_compile=array ();
53
+		$this->jquery_code_for_compile=array();
54 54
 		$this->jquery_code_for_compile []="$( \"".$this->attachTo."\" ).{$this->uiName}(".$this->getParamsAsJSON($allParams).");";
55 55
 		$this->compileEvents();
56 56
 		return $this->compileJQueryCode();
Please login to merge, or discard this patch.
Ajax/common/traits/JqueryAjaxTrait.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	protected $ajaxLoader='<span></span><span></span><span></span><span></span><span></span>';
16 16
 
17 17
 	public abstract function _prep_value($value);
18
-	public abstract function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true);
18
+	public abstract function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true);
19 19
 	protected function addLoading(&$retour, $responseElement) {
20 20
 		$loading_notifier='<div class="ajax-loader">';
21 21
 		if ($this->ajaxLoader=='') {
@@ -28,20 +28,20 @@  discard block
 block discarded – undo
28 28
 		$retour.="\t\t$({$responseElement}).prepend('{$loading_notifier}');\n";
29 29
 	}
30 30
 
31
-	public function _get($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) {
32
-		return $this->_ajax("get", $url,$params,$responseElement,$jsCallback,$attr,$hasLoader,$immediatly);
31
+	public function _get($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true, $immediatly=false) {
32
+		return $this->_ajax("get", $url, $params, $responseElement, $jsCallback, $attr, $hasLoader, $immediatly);
33 33
 	}
34
-	public function _post($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) {
35
-		return $this->_ajax("post", $url,$params,$responseElement,$jsCallback,$attr,$hasLoader,$immediatly);
34
+	public function _post($url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true, $immediatly=false) {
35
+		return $this->_ajax("post", $url, $params, $responseElement, $jsCallback, $attr, $hasLoader, $immediatly);
36 36
 	}
37 37
 
38
-	protected function _ajax($method,$url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) {
39
-		if(JString::isNull($params)){$params="{}";}
38
+	protected function _ajax($method, $url, $params="{}", $responseElement="", $jsCallback=NULL, $attr="id", $hasLoader=true, $immediatly=false) {
39
+		if (JString::isNull($params)) {$params="{}"; }
40 40
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
41 41
 		$retour=$this->_getAjaxUrl($url, $attr);
42 42
 		$responseElement=$this->_getResponseElement($responseElement);
43 43
 		$retour.="var self=this;\n";
44
-		if($hasLoader===true){
44
+		if ($hasLoader===true) {
45 45
 			$this->addLoading($retour, $responseElement);
46 46
 		}
47 47
 		$retour.="$.".$method."(url,".$params.").done(function( data ) {\n";
@@ -51,30 +51,30 @@  discard block
 block discarded – undo
51 51
 			return $retour;
52 52
 	}
53 53
 
54
-	protected function _getAjaxUrl($url,$attr){
54
+	protected function _getAjaxUrl($url, $attr) {
55 55
 		$url=$this->_correctAjaxUrl($url);
56 56
 		$retour="url='".$url."';\n";
57 57
 		$slash="/";
58
-		if(JString::endswith($url, "/")===true)
58
+		if (JString::endswith($url, "/")===true)
59 59
 			$slash="";
60
-		if(JString::isNotNull($attr)){
60
+		if (JString::isNotNull($attr)) {
61 61
 			if ($attr==="value")
62 62
 				$retour.="url=url+'".$slash."'+$(this).val();\n";
63 63
 			elseif ($attr==="html")
64 64
 			$retour.="url=url+'".$slash."'+$(this).html();\n";
65
-			elseif($attr!=null && $attr!=="")
65
+			elseif ($attr!=null && $attr!=="")
66 66
 					$retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n";
67 67
 		}
68 68
 		return $retour;
69 69
 	}
70 70
 
71
-	protected function _getOnAjaxDone($responseElement,$jsCallback){
71
+	protected function _getOnAjaxDone($responseElement, $jsCallback) {
72 72
 		$retour="";
73 73
 		if ($responseElement!=="") {
74
-			if(JString::startswith($responseElement, "\"-")===true){
74
+			if (JString::startswith($responseElement, "\"-")===true) {
75 75
 				$responseElement=\str_replace("\"-", "\"", $responseElement);
76 76
 				$retour="\t$({$responseElement}).replaceWith( data );\n";
77
-			}else{
77
+			} else {
78 78
 				$retour="\t$({$responseElement}).html( data );\n";
79 79
 			}
80 80
 		}
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 		return $retour;
83 83
 	}
84 84
 
85
-	protected function _getResponseElement($responseElement){
85
+	protected function _getResponseElement($responseElement) {
86 86
 		if ($responseElement!=="") {
87 87
 			$responseElement=$this->_prep_value($responseElement);
88 88
 		}
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 	protected function _correctAjaxUrl($url) {
93 93
 		if ($url!=="/" && JString::endsWith($url, "/")===true)
94 94
 			$url=substr($url, 0, strlen($url)-1);
95
-		if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) {
95
+		if (strncmp($url, 'http://', 7)!=0 && strncmp($url, 'https://', 8)!=0) {
96 96
 			$url=$this->jsUtils->getUrl($url);
97 97
 		}
98 98
 		return $url;
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	 * @param string $jsCallback javascript code to execute after the request
107 107
 	 * @param boolean $immediatly
108 108
 	 */
109
-	public function _json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document",$immediatly=false) {
109
+	public function _json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document", $immediatly=false) {
110 110
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
111 111
 		$retour=$this->_getAjaxUrl($url, $attr);
112 112
 		$retour.="$.{$method}(url,".$params.").done(function( data ) {\n";
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 	 * @param string $url the request address
128 128
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true)
129 129
 	 */
130
-	public function _jsonOn($event,$element, $url,$parameters=array()) {
130
+	public function _jsonOn($event, $element, $url, $parameters=array()) {
131 131
 		$preventDefault=true;
132 132
 		$stopPropagation=true;
133 133
 		$jsCallback=null;
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 		$params="{}";
138 138
 		$immediatly=true;
139 139
 		extract($parameters);
140
-		return $this->_add_event($element, $this->_json($url,$method, $params,$jsCallback, $attr,$context), $event, $preventDefault, $stopPropagation,$immediatly);
140
+		return $this->_add_event($element, $this->_json($url, $method, $params, $jsCallback, $attr, $context), $event, $preventDefault, $stopPropagation, $immediatly);
141 141
 	}
142 142
 
143 143
 	/**
@@ -149,19 +149,19 @@  discard block
 block discarded – undo
149 149
 	 * @param string $context jquery DOM element, array container.
150 150
 	 * @param boolean $immediatly
151 151
 	 */
152
-	public function _jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context=null,$immediatly=false) {
152
+	public function _jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context=null, $immediatly=false) {
153 153
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
154 154
 		$retour=$this->_getAjaxUrl($url, $attr);
155
-		if($context===null){
155
+		if ($context===null) {
156 156
 			$appendTo="\t\tnewElm.appendTo($('".$maskSelector."').parent());\n";
157
-			$newElm = "$('#'+newId)";
158
-		}else{
157
+			$newElm="$('#'+newId)";
158
+		} else {
159 159
 			$appendTo="\t\tnewElm.appendTo(".$context.");\n";
160
-			$newElm = $context.".find('#'+newId)";
160
+			$newElm=$context.".find('#'+newId)";
161 161
 		}
162 162
 		$retour.="var self = $(this);\n$.{$method}(url,".$params.").done(function( data ) {\n";
163 163
 		$retour.="\tdata=$.parseJSON(data);$.each(data, function(index, value) {\n"."\tvar created=false;var maskElm=$('".$maskSelector."').first();maskElm.hide();"."\tvar newId=(maskElm.attr('id') || 'mask')+'-'+index;"."\tvar newElm=".$newElm.";\n"."\tif(!newElm.length){\n"."\t\tnewElm=maskElm.clone();newElm.attr('id',newId);\n";
164
-		$retour.= $appendTo;
164
+		$retour.=$appendTo;
165 165
 		$retour.="\t}\n"."\tfor(var key in value){\n"."\t\t\tvar html = $('<div />').append($(newElm).clone()).html();\n"."\t\t\tif(html.indexOf('[['+key+']]')>-1){\n"."\t\t\t\tcontent=$(html.split('[['+key+']]').join(value[key]));\n"."\t\t\t\t$(newElm).replaceWith(content);newElm=content;\n"."\t\t\t}\n"."\t\tvar sel='[data-id=\"'+key+'\"]';if($(sel,newElm).length){\n"."\t\t\tvar selElm=$(sel,newElm);\n"."\t\t\t if(selElm.is('[value]')) { selElm.attr('value',value[key]);selElm.val(value[key]);} else { selElm.html(value[key]); }\n"."\t\t}\n"."}\n"."\t$(newElm).show(true);"."\n"."\t$(newElm).removeClass('hide');"."});\n";
166 166
 		$retour.="\t$(document).trigger('jsonReady',[data]);\n";
167 167
 		$retour.="\t".$jsCallback."\n"."});\n";
@@ -176,26 +176,26 @@  discard block
 block discarded – undo
176 176
 	 * @param string $url the request address
177 177
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get", "context"=>null)
178 178
 	 */
179
-	public function _jsonArrayOn($event,$element, $maskSelector,$url,$parameters=array()) {
179
+	public function _jsonArrayOn($event, $element, $maskSelector, $url, $parameters=array()) {
180 180
 		$preventDefault=true;
181 181
 		$stopPropagation=true;
182 182
 		$jsCallback=null;
183 183
 		$attr="id";
184 184
 		$method="get";
185
-		$context = null;
185
+		$context=null;
186 186
 		$params="{}";
187 187
 		$immediatly=true;
188 188
 		extract($parameters);
189
-		return $this->_add_event($element, $this->_jsonArray($maskSelector,$url,$method, $params,$jsCallback, $attr, $context), $event, $preventDefault, $stopPropagation,$immediatly);
189
+		return $this->_add_event($element, $this->_jsonArray($maskSelector, $url, $method, $params, $jsCallback, $attr, $context), $event, $preventDefault, $stopPropagation, $immediatly);
190 190
 	}
191 191
 
192
-	public function _postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $attr="id", $hasLoader=true,$immediatly=false) {
192
+	public function _postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $attr="id", $hasLoader=true, $immediatly=false) {
193 193
 		$jsCallback=isset($jsCallback) ? $jsCallback : "";
194 194
 		$retour=$this->_getAjaxUrl($url, $attr);
195 195
 		$retour.="\nvar params=$('#".$form."').serialize();\n";
196 196
 		$responseElement=$this->_getResponseElement($responseElement);
197 197
 		$retour.="var self=this;\n";
198
-		if($hasLoader===true){
198
+		if ($hasLoader===true) {
199 199
 			$this->addLoading($retour, $responseElement);
200 200
 		}
201 201
 		$retour.="$.post(url,params).done(function( data ) {\n";
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 	 * @param string $responseElement
223 223
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true)
224 224
 	 */
225
-	public function _getOn($event,$element, $url, $params="{}", $responseElement="", $parameters=array()) {
225
+	public function _getOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) {
226 226
 		$preventDefault=true;
227 227
 		$stopPropagation=true;
228 228
 		$jsCallback=null;
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 		$hasLoader=true;
231 231
 		$immediatly=true;
232 232
 		extract($parameters);
233
-		return $this->_add_event($element, $this->_get($url, $params, $responseElement, $jsCallback, $attr,$hasLoader), $event, $preventDefault, $stopPropagation,$immediatly);
233
+		return $this->_add_event($element, $this->_get($url, $params, $responseElement, $jsCallback, $attr, $hasLoader), $event, $preventDefault, $stopPropagation, $immediatly);
234 234
 	}
235 235
 
236 236
 	/**
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 	 * @param string $responseElement
244 244
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true)
245 245
 	 */
246
-	public function _postOn($event,$element, $url, $params="{}", $responseElement="", $parameters=array()) {
246
+	public function _postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) {
247 247
 		$preventDefault=true;
248 248
 		$stopPropagation=true;
249 249
 		$jsCallback=null;
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 		$hasLoader=true;
252 252
 		$immediatly=true;
253 253
 		extract($parameters);
254
-		return $this->_add_event($element, $this->_post($url, $params, $responseElement, $jsCallback, $attr,$hasLoader), $event, $preventDefault, $stopPropagation,$immediatly);
254
+		return $this->_add_event($element, $this->_post($url, $params, $responseElement, $jsCallback, $attr, $hasLoader), $event, $preventDefault, $stopPropagation, $immediatly);
255 255
 	}
256 256
 
257 257
 	/**
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 	 * @param string $responseElement
265 265
 	 * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"validation"=>false,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true)
266 266
 	 */
267
-	public function _postFormOn($event,$element, $url, $form, $responseElement="", $parameters=array()) {
267
+	public function _postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) {
268 268
 		$preventDefault=true;
269 269
 		$stopPropagation=true;
270 270
 		$validation=false;
@@ -273,6 +273,6 @@  discard block
 block discarded – undo
273 273
 		$hasLoader=true;
274 274
 		$immediatly=true;
275 275
 		extract($parameters);
276
-		return $this->_add_event($element, $this->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr,$hasLoader), $event, $preventDefault, $stopPropagation,$immediatly);
276
+		return $this->_add_event($element, $this->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader), $event, $preventDefault, $stopPropagation, $immediatly);
277 277
 	}
278 278
 }
279 279
\ No newline at end of file
Please login to merge, or discard this patch.