Completed
Push — master ( ea2a7d...e9bdcb )
by Jean-Christophe
03:40
created
Ajax/semantic/html/collections/HtmlTable.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
 
17 17
 	public function __construct($identifier, $rowCount, $colCount) {
18 18
 		parent::__construct($identifier, "table", "ui table");
19
-		$this->content=array ();
19
+		$this->content=array();
20 20
 		$this->setRowCount($rowCount, $colCount);
21
-		$this->_variations=[ Variation::CELLED,Variation::PADDED,Variation::COMPACT,Variation::DEFINITION ];
21
+		$this->_variations=[Variation::CELLED, Variation::PADDED, Variation::COMPACT, Variation::DEFINITION];
22 22
 	}
23 23
 
24 24
 	/**
@@ -137,8 +137,8 @@  discard block
 block discarded – undo
137 137
 
138 138
 	public function setBasic($very=false) {
139 139
 		if ($very)
140
-			$this->addToPropertyCtrl("class", "very", array ("very" ));
141
-		return $this->addToPropertyCtrl("class", "basic", array ("basic" ));
140
+			$this->addToPropertyCtrl("class", "very", array("very"));
141
+		return $this->addToPropertyCtrl("class", "basic", array("basic"));
142 142
 	}
143 143
 
144 144
 	public function setCollapsing() {
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/menus/HtmlMenu.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -34,12 +34,12 @@  discard block
 block discarded – undo
34 34
 	 * @return \Ajax\semantic\html\collections\HtmlMenu
35 35
 	 */
36 36
 	public function setType($type="") {
37
-		return $this->addToPropertyCtrl("class", $type, array ("","item","text" ));
37
+		return $this->addToPropertyCtrl("class", $type, array("", "item", "text"));
38 38
 	}
39 39
 
40 40
 	public function setActiveItem($index) {
41 41
 		$item=$this->getItem($index);
42
-		if ($item !== null) {
42
+		if ($item!==null) {
43 43
 			$item->addToProperty("class", "active");
44 44
 		}
45 45
 		return $this;
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
 	private function getItemToInsert($item) {
49 49
 		if ($item instanceof HtmlInput || $item instanceof HtmlImg || $item instanceof HtmlIcon) {
50
-			$itemO=new HtmlSemDoubleElement("item-" . $this->identifier, "div", "");
50
+			$itemO=new HtmlSemDoubleElement("item-".$this->identifier, "div", "");
51 51
 			$itemO->setContent($item);
52 52
 			$item=$itemO;
53 53
 		}
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
 	private function afterInsert($item) {
58 58
 		if (!$item instanceof HtmlMenu)
59
-			$item->addToPropertyCtrl("class", "item", array ("item" ));
59
+			$item->addToPropertyCtrl("class", "item", array("item"));
60 60
 		else {
61 61
 			$this->setSecondary();
62 62
 		}
@@ -87,9 +87,9 @@  discard block
 block discarded – undo
87 87
 
88 88
 	public function generateMenuAsItem($menu, $header=null) {
89 89
 		$count=$this->count();
90
-		$item=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "div");
90
+		$item=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "div");
91 91
 		if (isset($header)) {
92
-			$headerItem=new HtmlSemDoubleElement("item-header-" . $this->identifier . "-" . $count, "div", "header");
92
+			$headerItem=new HtmlSemDoubleElement("item-header-".$this->identifier."-".$count, "div", "header");
93 93
 			$headerItem->setContent($header);
94 94
 			$item->addContent($headerItem);
95 95
 		}
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 		$value=new HtmlSemDoubleElement($identifier, "a", "browse item", $value);
107 107
 		$value->addContent(new HtmlIcon("", "dropdown"));
108 108
 		$value=$this->addItem($value);
109
-		$popup=new HtmlPopup($value, "popup-" . $this->identifier . "-" . $this->count(), $content);
109
+		$popup=new HtmlPopup($value, "popup-".$this->identifier."-".$this->count(), $content);
110 110
 		$popup->setFlowing()->setPosition("bottom left")->setOn("click");
111 111
 		$this->wrap("", $popup);
112 112
 		return $popup;
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	public function addDropdownAsItem($value, $items=NULL) {
116 116
 		$dd=$value;
117 117
 		if (\is_string($value)) {
118
-			$dd=new HtmlDropdown("dropdown-" . $this->identifier . "-" . $this->count(), $value, $items);
118
+			$dd=new HtmlDropdown("dropdown-".$this->identifier."-".$this->count(), $value, $items);
119 119
 		}
120 120
 		return $this->addItem($dd);
121 121
 	}
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 	 * @see \Ajax\common\html\html5\HtmlCollection::createItem()
128 128
 	 */
129 129
 	protected function createItem($value) {
130
-		$itemO=new HtmlLink("item-" . \sizeof($this->content), "", $value);
130
+		$itemO=new HtmlLink("item-".\sizeof($this->content), "", $value);
131 131
 		return $itemO->setClass("item");
132 132
 	}
133 133
 
@@ -140,28 +140,28 @@  discard block
 block discarded – undo
140 140
 	}
141 141
 
142 142
 	public function setVertical() {
143
-		return $this->addToPropertyCtrl("class", "vertical", array ("vertical" ));
143
+		return $this->addToPropertyCtrl("class", "vertical", array("vertical"));
144 144
 	}
145 145
 
146 146
 	public function setPosition($value="right") {
147
-		return $this->addToPropertyCtrl("class", $value, array ("right","left" ));
147
+		return $this->addToPropertyCtrl("class", $value, array("right", "left"));
148 148
 	}
149 149
 
150 150
 	public function setPointing($value=Direction::NONE) {
151
-		return $this->addToPropertyCtrl("class", $value . " pointing", Direction::getConstantValues("pointing"));
151
+		return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing"));
152 152
 	}
153 153
 
154 154
 	public function asTab($vertical=false) {
155
-		$this->apply(function (HtmlDoubleElement &$item) {
155
+		$this->apply(function(HtmlDoubleElement & $item) {
156 156
 			$item->setTagName("a");
157 157
 		});
158
-		if ($vertical === true)
158
+		if ($vertical===true)
159 159
 			$this->setVertical();
160 160
 		return $this->addToProperty("class", "tabular");
161 161
 	}
162 162
 
163 163
 	public function asPagination() {
164
-		$this->apply(function (HtmlDoubleElement &$item) {
164
+		$this->apply(function(HtmlDoubleElement & $item) {
165 165
 			$item->setTagName("a");
166 166
 		});
167 167
 		return $this->addToProperty("class", "pagination");
@@ -198,10 +198,10 @@  discard block
 block discarded – undo
198 198
 	 */
199 199
 	public function setWidth($width) {
200 200
 		if (\is_int($width)) {
201
-			$width=Wide::getConstants()["W" . $width];
201
+			$width=Wide::getConstants()["W".$width];
202 202
 		}
203 203
 		$this->addToPropertyCtrl("class", $width, Wide::getConstants());
204
-		return $this->addToPropertyCtrl("class", "item", array ("item" ));
204
+		return $this->addToPropertyCtrl("class", "item", array("item"));
205 205
 	}
206 206
 
207 207
 	public function addImage($identifier, $src="", $alt="") {
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlSegment.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,12 +17,12 @@  discard block
 block discarded – undo
17 17
  * @version 1.001
18 18
  */
19 19
 class HtmlSegment extends HtmlSemDoubleElement {
20
-	use AttachedTrait,TextAlignmentTrait;
20
+	use AttachedTrait, TextAlignmentTrait;
21 21
 
22 22
 	public function __construct($identifier, $content="") {
23 23
 		parent::__construct($identifier, "div", "ui segment");
24
-		$this->_variations=\array_merge($this->_variations, [ Variation::PADDED,Variation::COMPACT ]);
25
-		$this->_states=\array_merge($this->_states, [ State::LOADING ]);
24
+		$this->_variations=\array_merge($this->_variations, [Variation::PADDED, Variation::COMPACT]);
25
+		$this->_states=\array_merge($this->_states, [State::LOADING]);
26 26
 		$this->content=$content;
27 27
 	}
28 28
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	}
37 37
 
38 38
 	public function setSens($sens="vertical") {
39
-		return $this->addToPropertyCtrl("class", $sens, array ("vertical","horizontal" ));
39
+		return $this->addToPropertyCtrl("class", $sens, array("vertical", "horizontal"));
40 40
 	}
41 41
 
42 42
 	public function setEmphasis($value=Emphasis::SECONDARY) {
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlButton.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	}
55 55
 
56 56
 	public function setFocusable($value=true) {
57
-		if ($value === true)
57
+		if ($value===true)
58 58
 			$this->setProperty("tabindex", "0");
59 59
 		else {
60 60
 			$this->removeProperty("tabindex");
@@ -64,14 +64,14 @@  discard block
 block discarded – undo
64 64
 
65 65
 	public function setAnimated($content, $animation="") {
66 66
 		$this->setTagName("div");
67
-		$this->addToProperty("class", "animated " . $animation);
68
-		$visible=new HtmlSemDoubleElement("visible-" . $this->identifier, "div");
67
+		$this->addToProperty("class", "animated ".$animation);
68
+		$visible=new HtmlSemDoubleElement("visible-".$this->identifier, "div");
69 69
 		$visible->setClass("visible content");
70 70
 		$visible->setContent($this->content);
71
-		$hidden=new HtmlSemDoubleElement("hidden-" . $this->identifier, "div");
71
+		$hidden=new HtmlSemDoubleElement("hidden-".$this->identifier, "div");
72 72
 		$hidden->setClass("hidden content");
73 73
 		$hidden->setContent($content);
74
-		$this->content=array ($visible,$hidden );
74
+		$this->content=array($visible, $hidden);
75 75
 		return $hidden;
76 76
 	}
77 77
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	public function asIcon($icon) {
84 84
 		$iconO=$icon;
85 85
 		if (\is_string($icon)) {
86
-			$iconO=new HtmlIcon("icon-" . $this->identifier, $icon);
86
+			$iconO=new HtmlIcon("icon-".$this->identifier, $icon);
87 87
 		}
88 88
 		$this->addToProperty("class", "icon");
89 89
 		$this->content=$iconO;
@@ -104,9 +104,9 @@  discard block
 block discarded – undo
104 104
 	public function addLabel($caption, $before=false) {
105 105
 		$this->tagName="div";
106 106
 		$this->addToProperty("class", "labeled");
107
-		$this->content=new HtmlButton("button-" . $this->identifier, $this->content);
107
+		$this->content=new HtmlButton("button-".$this->identifier, $this->content);
108 108
 		$this->content->setTagName("div");
109
-		$label=new HtmlLabel("label-" . $this->identifier, $caption, "a");
109
+		$label=new HtmlLabel("label-".$this->identifier, $caption, "a");
110 110
 		$label->setBasic();
111 111
 		$this->addContent($label, $before);
112 112
 		return $label;
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 	 */
119 119
 	public function fromArray($array) {
120 120
 		$array=parent::fromArray($array);
121
-		foreach ( $array as $key => $value ) {
121
+		foreach ($array as $key => $value) {
122 122
 			$this->setProperty($key, $value);
123 123
 		}
124 124
 		return $array;
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 	}
182 182
 
183 183
 	public static function social($identifier, $social, $value=NULL) {
184
-		if ($value === NULL)
184
+		if ($value===NULL)
185 185
 			$value=\ucfirst($social);
186 186
 		$return=new HtmlButton($identifier, $value);
187 187
 		$return->addIcon($social);
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlInput.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@  discard block
 block discarded – undo
12 12
 	use IconTrait;
13 13
 
14 14
 	public function __construct($identifier, $type="text", $value="", $placeholder="") {
15
-		parent::__construct("div-" . $identifier, "div", "ui input");
15
+		parent::__construct("div-".$identifier, "div", "ui input");
16 16
 		$this->content=new \Ajax\common\html\html5\HtmlInput($identifier, $type, $value, $placeholder);
17
-		$this->_states=[ State::DISABLED,State::FOCUS,State::ERROR ];
18
-		$this->_variations=[ Variation::TRANSPARENT ];
17
+		$this->_states=[State::DISABLED, State::FOCUS, State::ERROR];
18
+		$this->_variations=[Variation::TRANSPARENT];
19 19
 	}
20 20
 
21 21
 	public function setFocus() {
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 	}
24 24
 
25 25
 	public function addLoading() {
26
-		if ($this->_hasIcon === false) {
26
+		if ($this->_hasIcon===false) {
27 27
 			throw new \Exception("Input must have an icon for showing a loader, use addIcon before");
28 28
 		}
29 29
 		return $this->addToProperty("class", State::LOADING);
@@ -31,31 +31,31 @@  discard block
 block discarded – undo
31 31
 
32 32
 	public function labeled($label, $direction=Direction::LEFT, $icon=NULL) {
33 33
 		$labelO=$label;
34
-		if (\is_object($label) === false) {
35
-			$labelO=new HtmlLabel("label-" . $this->identifier, $label);
34
+		if (\is_object($label)===false) {
35
+			$labelO=new HtmlLabel("label-".$this->identifier, $label);
36 36
 			if (isset($icon))
37 37
 				$labelO->addIcon($icon);
38
-		} else {
39
-			$labelO->addToPropertyCtrl("class", "label", array ("label" ));
38
+		}else {
39
+			$labelO->addToPropertyCtrl("class", "label", array("label"));
40 40
 		}
41
-		$this->addToProperty("class", $direction . " labeled");
42
-		$this->addContent($labelO, \strstr($direction, Direction::LEFT) !== false);
41
+		$this->addToProperty("class", $direction." labeled");
42
+		$this->addContent($labelO, \strstr($direction, Direction::LEFT)!==false);
43 43
 		return $labelO;
44 44
 	}
45 45
 
46 46
 	public function labeledToCorner($label, $direction=Direction::LEFT, $icon=NULL) {
47
-		return $this->labeled($label, $direction . " corner", $icon)->toCorner($direction);
47
+		return $this->labeled($label, $direction." corner", $icon)->toCorner($direction);
48 48
 	}
49 49
 
50 50
 	public function addAction($action, $direction=Direction::LEFT, $icon=NULL, $labeled=false) {
51 51
 		$actionO=$action;
52
-		if (\is_object($action) === false) {
53
-			$actionO=new HtmlButton("action-" . $this->identifier, $action);
52
+		if (\is_object($action)===false) {
53
+			$actionO=new HtmlButton("action-".$this->identifier, $action);
54 54
 			if (isset($icon))
55 55
 				$actionO->addIcon($icon, true, $labeled);
56 56
 		}
57
-		$this->addToProperty("class", $direction . " action");
58
-		$this->addContent($actionO, \strstr($direction, Direction::LEFT) !== false);
57
+		$this->addToProperty("class", $direction." action");
58
+		$this->addContent($actionO, \strstr($direction, Direction::LEFT)!==false);
59 59
 		return $actionO;
60 60
 	}
61 61
 }
62 62
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/semantic/html/base/traits/BaseTrait.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@  discard block
 block discarded – undo
7 7
 use Ajax\semantic\html\base\constants\Direction;
8 8
 
9 9
 trait BaseTrait {
10
-	protected $_variations=[ ];
11
-	protected $_states=[ ];
10
+	protected $_variations=[];
11
+	protected $_states=[];
12 12
 	protected $_baseClass;
13 13
 
14 14
 	protected abstract function setPropertyCtrl($name, $value, $typeCtrl);
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	public function addVariations($variations=array()) {
41 41
 		if (\is_string($variations))
42 42
 			$variations=\explode(" ", $variations);
43
-		foreach ( $variations as $variation ) {
43
+		foreach ($variations as $variation) {
44 44
 			$this->addVariation($variation);
45 45
 		}
46 46
 		return $this;
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	public function addStates($states=array()) {
50 50
 		if (\is_string($states))
51 51
 			$states=\explode(" ", $states);
52
-		foreach ( $states as $state ) {
52
+		foreach ($states as $state) {
53 53
 			$this->addState($state);
54 54
 		}
55 55
 		return $this;
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	}
103 103
 
104 104
 	public function setFloated($direction="right") {
105
-		return $this->addToPropertyCtrl("class", $direction . " floated", Direction::getConstantValues("floated"));
105
+		return $this->addToPropertyCtrl("class", $direction." floated", Direction::getConstantValues("floated"));
106 106
 	}
107 107
 
108 108
 	public function floatRight() {
Please login to merge, or discard this patch.
Ajax/semantic/html/content/HtmlGridCol.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@
 block discarded – undo
30 30
 	 */
31 31
 	public function setWidth($width) {
32 32
 		if (\is_int($width)) {
33
-			$width=Wide::getConstants()["W" . $width];
33
+			$width=Wide::getConstants()["W".$width];
34 34
 		}
35 35
 		$this->addToPropertyCtrl("class", $width, Wide::getConstants());
36
-		return $this->addToPropertyCtrl("class", "wide", array ("wide" ));
36
+		return $this->addToPropertyCtrl("class", "wide", array("wide"));
37 37
 	}
38 38
 
39 39
 	public function setValue($value) {
Please login to merge, or discard this patch.
Ajax/semantic/html/content/table/HtmlTR.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
 	public function setColCount($colCount) {
22 22
 		$count=$this->count();
23
-		for($i=$count; $i < $colCount; $i++) {
23
+		for ($i=$count; $i<$colCount; $i++) {
24 24
 			$item=$this->addItem(NULL);
25 25
 			$item->setTagName($this->_tdTagName);
26 26
 		}
@@ -60,12 +60,12 @@  discard block
 block discarded – undo
60 60
 	 */
61 61
 	public function setValues($values=array()) {
62 62
 		$count=$this->count();
63
-		if (\is_array($values) === false) {
63
+		if (\is_array($values)===false) {
64 64
 			$values=\array_fill(0, $count, $values);
65 65
 		}
66 66
 		$count=\min(\sizeof($values), $count);
67 67
 		
68
-		for($i=0; $i < $count; $i++) {
68
+		for ($i=0; $i<$count; $i++) {
69 69
 			$cell=$this->content[$i];
70 70
 			$cell->setValue($values[$i]);
71 71
 		}
Please login to merge, or discard this patch.
Ajax/semantic/html/content/table/HtmlTD.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 	 */
21 21
 	public function __construct($identifier, $content=NULL, $tagName="td") {
22 22
 		parent::__construct($identifier, $tagName, "", $content);
23
-		$this->_variations=[ Variation::COLLAPSING ];
23
+		$this->_variations=[Variation::COLLAPSING];
24 24
 	}
25 25
 
26 26
 	public function setContainer($container, $row, $col) {
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
 	public function setRowspan($rowspan) {
38 38
 		$to=min($this->_container->count(), $this->_row+$rowspan-1);
39
-		for($i=$to; $i>$this->_row; $i--) {
39
+		for ($i=$to; $i>$this->_row; $i--) {
40 40
 			$this->_container->delete($this->_row+1, $this->_col);
41 41
 		}
42 42
 		$this->setProperty("rowspan", $rowspan);
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
 	public function setColspan($colspan) {
55 55
 		$to=min($this->_container->getRow($this->_row)->count(), $this->_col+$colspan-1);
56
-		for($i=$to; $i>$this->_col; $i--) {
56
+		for ($i=$to; $i>$this->_col; $i--) {
57 57
 			$this->_container->delete($this->_row, $this->_col+1);
58 58
 		}
59 59
 		$this->setProperty("colspan", $colspan);
Please login to merge, or discard this patch.