Completed
Push — master ( 042f42...691772 )
by Jean-Christophe
03:21
created
Ajax/semantic/html/content/HtmlListItem.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -9,15 +9,15 @@  discard block
 block discarded – undo
9 9
 	protected $image;
10 10
 
11 11
 	public function __construct($identifier, $content=NULL) {
12
-		parent::__construct($identifier,"item",$content);
12
+		parent::__construct($identifier, "item", $content);
13 13
 	}
14
-	protected function initContent($content){
15
-		if(\is_array($content)){
16
-			if(JArray::isAssociative($content)===false){
14
+	protected function initContent($content) {
15
+		if (\is_array($content)) {
16
+			if (JArray::isAssociative($content)===false) {
17 17
 				$icon=@$content[0];
18 18
 				$title=@$content[1];
19 19
 				$desc=@$content[2];
20
-			}else{
20
+			} else {
21 21
 				$icon=@$content["icon"];
22 22
 				$image=@$content["image"];
23 23
 				$title=@$content["title"];
@@ -25,21 +25,21 @@  discard block
 block discarded – undo
25 25
 				$desc=@$content["description"];
26 26
 				$items=@$content["items"];
27 27
 			}
28
-			if(isset($icon)){
28
+			if (isset($icon)) {
29 29
 				$this->setIcon($icon);
30 30
 			}
31
-			if(isset($image)){
31
+			if (isset($image)) {
32 32
 				$this->setImage($image);
33 33
 			}
34
-			if(isset($title)){
35
-				$this->setTitle($title,$desc);
36
-			}elseif (isset($header)){
37
-				$this->setTitle($header,$desc,"header");
34
+			if (isset($title)) {
35
+				$this->setTitle($title, $desc);
36
+			}elseif (isset($header)) {
37
+				$this->setTitle($header, $desc, "header");
38 38
 			}
39
-			if(isset($items)){
39
+			if (isset($items)) {
40 40
 				$this->addList($items);
41 41
 			}
42
-		}else{
42
+		} else {
43 43
 			$this->setContent($content);
44 44
 		}
45 45
 	}
@@ -50,11 +50,11 @@  discard block
 block discarded – undo
50 50
 		return $list;
51 51
 	}
52 52
 
53
-	public function getList(){
53
+	public function getList() {
54 54
 		return $this->content["list"];
55 55
 	}
56 56
 
57
-	public function getItem($index){
57
+	public function getItem($index) {
58 58
 		return $this->getList()->getItem($index);
59 59
 	}
60 60
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/table/ActiveRow.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 * @param string $event
22 22
 	 * @param boolean $multiple
23 23
 	 */
24
-	public function __construct($table,$class="active",$event="click",$multiple=false){
24
+	public function __construct($table, $class="active", $event="click", $multiple=false) {
25 25
 		$this->table=$table;
26 26
 		$this->class=$class;
27 27
 		$this->event=$event;
@@ -55,12 +55,12 @@  discard block
 block discarded – undo
55 55
 		return $this;
56 56
 	}
57 57
 
58
-	public function compile(){
58
+	public function compile() {
59 59
 		$multiple="";
60
-		if(!$this->multiple){
60
+		if (!$this->multiple) {
61 61
 			$multiple="$(this).closest('tbody').children('tr').removeClass('".$this->class."');";
62 62
 		}
63
-		$this->table->onRow($this->event, $multiple."$(this).toggleClass('".$this->class."');",false,false);
63
+		$this->table->onRow($this->event, $multiple."$(this).toggleClass('".$this->class."');", false, false);
64 64
 	}
65 65
 
66 66
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/table/traits/TableTrait.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@  discard block
 block discarded – undo
7 7
  * @author jc
8 8
  * @property HtmlTable $_self
9 9
  */
10
-trait TableTrait{
10
+trait TableTrait {
11 11
 
12 12
 	abstract public function addEvent($event, $jsCode, $stopPropagation=false, $preventDefault=false);
13 13
 	abstract public function getOn($event, $url, $responseElement="", $parameters=array());
14 14
 
15
-	protected function addToPropertyTable($property,$value){
15
+	protected function addToPropertyTable($property, $value) {
16 16
 		return $this->_self->addToProperty($property, $value);
17 17
 	}
18 18
 
@@ -23,15 +23,15 @@  discard block
 block discarded – undo
23 23
 	public function setBasic($very=false) {
24 24
 		$table=$this->_self;
25 25
 		if ($very)
26
-			$table->addToPropertyCtrl("class", "very", array ("very" ));
27
-		return $table->addToPropertyCtrl("class", "basic", array ("basic" ));
26
+			$table->addToPropertyCtrl("class", "very", array("very"));
27
+		return $table->addToPropertyCtrl("class", "basic", array("basic"));
28 28
 	}
29 29
 
30 30
 	public function setCompact($very=false) {
31 31
 		$table=$this->_self;
32 32
 		if ($very)
33
-			$table->addToPropertyCtrl("class", "very", array ("very" ));
34
-		return $table->addToPropertyCtrl("class", "compact", array ("compact" ));
33
+			$table->addToPropertyCtrl("class", "very", array("very"));
34
+		return $table->addToPropertyCtrl("class", "compact", array("compact"));
35 35
 	}
36 36
 
37 37
 	public function setCollapsing() {
@@ -70,16 +70,16 @@  discard block
 block discarded – undo
70 70
 		return $this->addToPropertyTable("class", "striped");
71 71
 	}
72 72
 
73
-	public function onRowClick($jsCode, $stopPropagation=false, $preventDefault=false){
74
-		$this->onRowClick($jsCode,$stopPropagation,$preventDefault);
73
+	public function onRowClick($jsCode, $stopPropagation=false, $preventDefault=false) {
74
+		$this->onRowClick($jsCode, $stopPropagation, $preventDefault);
75 75
 	}
76 76
 
77
-	public function onRow($event,$jsCode, $stopPropagation=false, $preventDefault=false){
78
-		$this->_self->addEvent($event."{{tr}}",$jsCode,$stopPropagation,$preventDefault);
77
+	public function onRow($event, $jsCode, $stopPropagation=false, $preventDefault=false) {
78
+		$this->_self->addEvent($event."{{tr}}", $jsCode, $stopPropagation, $preventDefault);
79 79
 	}
80 80
 
81
-	public function getOnRow($event, $url, $responseElement="", $parameters=array()){
82
-		$parameters=\array_merge($parameters,["stopPropagation"=>false,"preventDefault"=>false]);
83
-		return $this->_self->getOn($event."{{tbody tr}}", $url,$responseElement,$parameters);
81
+	public function getOnRow($event, $url, $responseElement="", $parameters=array()) {
82
+		$parameters=\array_merge($parameters, ["stopPropagation"=>false, "preventDefault"=>false]);
83
+		return $this->_self->getOn($event."{{tbody tr}}", $url, $responseElement, $parameters);
84 84
 	}
85 85
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/menus/HtmlLabeledIconMenu.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,15 +12,15 @@  discard block
 block discarded – undo
12 12
  * @author jc
13 13
  * @version 1.001
14 14
  */
15
-class HtmlLabeledIconMenu extends HtmlMenu{
15
+class HtmlLabeledIconMenu extends HtmlMenu {
16 16
 
17 17
 
18 18
 	/**
19 19
 	 * @param string $identifier
20 20
 	 * @param array $items icons
21 21
 	 */
22
-	public function __construct( $identifier, $items=array()){
23
-		parent::__construct( $identifier, $items);
22
+	public function __construct($identifier, $items=array()) {
23
+		parent::__construct($identifier, $items);
24 24
 		$this->addToProperty("class", "labeled icon");
25 25
 	}
26 26
 
@@ -31,14 +31,14 @@  discard block
 block discarded – undo
31 31
 	protected function createItem($value) {
32 32
 		$text="";
33 33
 		$v=$value;
34
-		if(\is_array($value)){
34
+		if (\is_array($value)) {
35 35
 			$v=@$value[0];
36 36
 			$text=@$value[1];
37 37
 		}
38 38
 		$count=\sizeof($this->content);
39 39
 		$value=new HtmlIcon("icon-".$count, $v);
40
-		$value->wrap("",$text);
41
-		$itemO=new HtmlLink("item-".$count,"",$value);
40
+		$value->wrap("", $text);
41
+		$itemO=new HtmlLink("item-".$count, "", $value);
42 42
 		return $itemO->setClass("item");
43 43
 	}
44 44
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/menus/HtmlIconMenu.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,15 +12,15 @@  discard block
 block discarded – undo
12 12
  * @author jc
13 13
  * @version 1.001
14 14
  */
15
-class HtmlIconMenu extends HtmlMenu{
15
+class HtmlIconMenu extends HtmlMenu {
16 16
 
17 17
 
18 18
 	/**
19 19
 	 * @param string $identifier
20 20
 	 * @param array $items icons
21 21
 	 */
22
-	public function __construct( $identifier, $items=array()){
23
-		parent::__construct( $identifier, $items);
22
+	public function __construct($identifier, $items=array()) {
23
+		parent::__construct($identifier, $items);
24 24
 		$this->addToProperty("class", "icon");
25 25
 	}
26 26
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	protected function createItem($value) {
33 33
 		$count=\sizeof($this->content);
34 34
 		$value=new HtmlIcon("icon-".$count, $value);
35
-		$itemO=new HtmlLink("item-".$count,"",$value);
35
+		$itemO=new HtmlLink("item-".$count, "", $value);
36 36
 		return $itemO->setClass("item");
37 37
 	}
38 38
 }
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
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
 	 * @return \Ajax\semantic\html\collections\HtmlMenu
41 41
 	 */
42 42
 	public function setType($type="") {
43
-		return $this->addToPropertyCtrl("class", $type, array ("","item","text" ));
43
+		return $this->addToPropertyCtrl("class", $type, array("", "item", "text"));
44 44
 	}
45 45
 
46 46
 	public function setActiveItem($index) {
47 47
 		$item=$this->getItem($index);
48
-		if ($item !== null) {
48
+		if ($item!==null) {
49 49
 			$item->addToProperty("class", "active");
50 50
 		}
51 51
 		return $this;
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
 	private function getItemToInsert($item) {
55 55
 		if ($item instanceof HtmlInput || $item instanceof HtmlImg || $item instanceof HtmlIcon || $item instanceof HtmlButtonGroups || $item instanceof HtmlButton || $item instanceof HtmlLabel) {
56
-			$itemO=new HtmlMenuItem("item-" . $this->identifier . "-" . \sizeof($this->content) , $item);
56
+			$itemO=new HtmlMenuItem("item-".$this->identifier."-".\sizeof($this->content), $item);
57 57
 			$item=$itemO;
58 58
 		}
59 59
 		return $item;
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
 	private function afterInsert($item) {
63 63
 		if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false)
64
-			$item->addToPropertyCtrl("class", "item", array ("item" ));
64
+			$item->addToPropertyCtrl("class", "item", array("item"));
65 65
 		else {
66 66
 			$this->setSecondary();
67 67
 		}
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	public function addItem($item) {
78 78
 		$number=$item;
79 79
 		$item=parent::addItem($this->getItemToInsert($item));
80
-		if(\is_int($number))
80
+		if (\is_int($number))
81 81
 			$item->setProperty("data-page", $number);
82 82
 		return $this->afterInsert($item);
83 83
 	}
@@ -95,15 +95,15 @@  discard block
 block discarded – undo
95 95
 
96 96
 	public function generateMenuAsItem($menu, $header=null) {
97 97
 		$count=$this->count();
98
-		$item=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "div");
98
+		$item=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "div");
99 99
 		if (isset($header)) {
100
-			$headerItem=new HtmlSemDoubleElement("item-header-" . $this->identifier . "-" . $count, "div", "header");
100
+			$headerItem=new HtmlSemDoubleElement("item-header-".$this->identifier."-".$count, "div", "header");
101 101
 			$headerItem->setContent($header);
102 102
 			$item->addContent($headerItem);
103 103
 			$this->_itemHeader=$headerItem;
104 104
 		}
105
-		if(\is_array($menu)){
106
-			$menu=new HtmlMenu("menu-" . $this->identifier . "-" . $count,$menu);
105
+		if (\is_array($menu)) {
106
+			$menu=new HtmlMenu("menu-".$this->identifier."-".$count, $menu);
107 107
 		}
108 108
 		$menu->setClass("menu");
109 109
 		$item->addContent($menu);
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 		$value=new HtmlSemDoubleElement($identifier, "a", "browse item", $value);
119 119
 		$value->addContent(new HtmlIcon("", "dropdown"));
120 120
 		$value=$this->addItem($value);
121
-		$popup=new HtmlPopup($value, "popup-" . $this->identifier . "-" . $this->count(), $content);
121
+		$popup=new HtmlPopup($value, "popup-".$this->identifier."-".$this->count(), $content);
122 122
 		$popup->setFlowing()->setPosition("bottom left")->setOn("click");
123 123
 		$this->wrap("", $popup);
124 124
 		return $popup;
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 	public function addDropdownAsItem($value, $items=NULL) {
128 128
 		$dd=$value;
129 129
 		if (\is_string($value)) {
130
-			$dd=new HtmlDropdown("dropdown-" . $this->identifier . "-" . $this->count(), $value, $items);
130
+			$dd=new HtmlDropdown("dropdown-".$this->identifier."-".$this->count(), $value, $items);
131 131
 		}
132 132
 		$this->addItem($dd);
133 133
 		return $dd;
@@ -140,14 +140,14 @@  discard block
 block discarded – undo
140 140
 	 * @see \Ajax\common\html\html5\HtmlCollection::createItem()
141 141
 	 */
142 142
 	protected function createItem($value) {
143
-		$itemO=new HtmlMenuItem($this->identifier."-item-" . \sizeof($this->content),"");
143
+		$itemO=new HtmlMenuItem($this->identifier."-item-".\sizeof($this->content), "");
144 144
 		$itemO->setTagName("a");
145 145
 		$itemO->setContent($value);
146 146
 		return $itemO;
147 147
 	}
148 148
 
149 149
 	public function setSecondary($value=true) {
150
-		if($value)
150
+		if ($value)
151 151
 			$this->addToProperty("class", "secondary");
152 152
 		else
153 153
 			$this->removePropertyValue("class", "secondary");
@@ -155,28 +155,28 @@  discard block
 block discarded – undo
155 155
 	}
156 156
 
157 157
 	public function setVertical() {
158
-		return $this->addToPropertyCtrl("class", "vertical", array ("vertical" ));
158
+		return $this->addToPropertyCtrl("class", "vertical", array("vertical"));
159 159
 	}
160 160
 
161 161
 	public function setPosition($value="right") {
162
-		return $this->addToPropertyCtrl("class", $value, array ("right","left" ));
162
+		return $this->addToPropertyCtrl("class", $value, array("right", "left"));
163 163
 	}
164 164
 
165 165
 	public function setPointing($value=Direction::NONE) {
166
-		return $this->addToPropertyCtrl("class", $value . " pointing", Direction::getConstantValues("pointing"));
166
+		return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing"));
167 167
 	}
168 168
 
169 169
 	public function asTab($vertical=false) {
170
-		$this->apply(function (HtmlDoubleElement &$item) {
170
+		$this->apply(function(HtmlDoubleElement&$item) {
171 171
 			$item->setTagName("a");
172 172
 		});
173
-		if ($vertical === true)
173
+		if ($vertical===true)
174 174
 			$this->setVertical();
175 175
 		return $this->addToProperty("class", "tabular");
176 176
 	}
177 177
 
178 178
 	public function asPagination() {
179
-		$this->apply(function (HtmlDoubleElement &$item) {
179
+		$this->apply(function(HtmlDoubleElement&$item) {
180 180
 			$item->setTagName("a");
181 181
 		});
182 182
 		return $this->addToProperty("class", "pagination");
@@ -213,10 +213,10 @@  discard block
 block discarded – undo
213 213
 	 */
214 214
 	public function setWidth($width) {
215 215
 		if (\is_int($width)) {
216
-			$width=Wide::getConstants()["W" . $width];
216
+			$width=Wide::getConstants()["W".$width];
217 217
 		}
218 218
 		$this->addToPropertyCtrl("class", $width, Wide::getConstants());
219
-		return $this->addToPropertyCtrl("class", "item", array ("item" ));
219
+		return $this->addToPropertyCtrl("class", "item", array("item"));
220 220
 	}
221 221
 
222 222
 	public function addImage($identifier, $src="", $alt="") {
@@ -231,14 +231,14 @@  discard block
 block discarded – undo
231 231
 		return $this->_itemHeader;
232 232
 	}
233 233
 
234
-	public function setHasContainer(){
235
-		return $this->wrapContent("<div class='ui container'>","</div>");
234
+	public function setHasContainer() {
235
+		return $this->wrapContent("<div class='ui container'>", "</div>");
236 236
 	}
237 237
 
238
-	public function run(JsUtils $js){
239
-		if($this->identifier!=="" && !isset($this->_bsComponent))
240
-			$this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false);
241
-		$result= parent::run($js);
238
+	public function run(JsUtils $js) {
239
+		if ($this->identifier!=="" && !isset($this->_bsComponent))
240
+			$this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}', false, false);
241
+		$result=parent::run($js);
242 242
 		return $result->setItemSelector(".item");
243 243
 	}
244 244
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/menus/HtmlAccordionMenu.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
 use Ajax\semantic\html\content\HtmlAccordionMenuItem;
7 7
 use Ajax\JsUtils;
8 8
 
9
-class HtmlAccordionMenu extends HtmlMenu{
9
+class HtmlAccordionMenu extends HtmlMenu {
10 10
 	protected $params=array();
11 11
 
12
-	public function __construct( $identifier, $items=array() ){
13
-		parent::__construct( $identifier, $items);
12
+	public function __construct($identifier, $items=array()) {
13
+		parent::__construct($identifier, $items);
14 14
 		$this->addToProperty("class", "accordion");
15 15
 		$this->setVertical();
16 16
 	}
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
 	protected function createItem($value) {
23 23
 		$title=$value;
24 24
 		$content="";
25
-		if(\is_array($value)){
26
-			$title=@$value[0];$content=@$value[1];
25
+		if (\is_array($value)) {
26
+			$title=@$value[0]; $content=@$value[1];
27 27
 		}
28 28
 		$itemO=new HtmlAccordionMenuItem("item-".$this->identifier."-".$this->count(), $title, $content);
29 29
 		return $itemO->setClass("item");
@@ -34,13 +34,13 @@  discard block
 block discarded – undo
34 34
 	 * @see BaseHtml::run()
35 35
 	 */
36 36
 	public function run(JsUtils $js) {
37
-		if(isset($this->_bsComponent)===false)
38
-			$this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params);
37
+		if (isset($this->_bsComponent)===false)
38
+			$this->_bsComponent=$js->semantic()->accordion("#".$this->identifier, $this->params);
39 39
 			$this->addEventsOnRun($js);
40 40
 			return $this->_bsComponent;
41 41
 	}
42 42
 
43
-	public function setExclusive($value){
43
+	public function setExclusive($value) {
44 44
 		$this->params["exclusive"]=$value;
45 45
 	}
46 46
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlMessage.php 1 patch
Braces   +8 added lines, -6 removed lines patch added patch discarded remove patch
@@ -68,10 +68,11 @@  discard block
 block discarded – undo
68 68
 	}
69 69
 
70 70
 	public function setDismissable($dismiss=true){
71
-		if($dismiss===true)
72
-			$this->close=new HtmlIcon("close-".$this->identifier, "close");
73
-		else
74
-			$this->close=NULL;
71
+		if($dismiss===true) {
72
+					$this->close=new HtmlIcon("close-".$this->identifier, "close");
73
+		} else {
74
+					$this->close=NULL;
75
+		}
75 76
 		return $this;
76 77
 	}
77 78
 
@@ -115,8 +116,9 @@  discard block
 block discarded – undo
115 116
 	public function setMessage($message){
116 117
 		if(\is_array($this->content)){
117 118
 			$this->content[\sizeof($this->content)-1]=$message;
118
-		}else
119
-			$this->setContent($message);
119
+		} else {
120
+					$this->setContent($message);
121
+		}
120 122
 	}
121 123
 
122 124
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlFormInput.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,8 +9,9 @@  discard block
 block discarded – undo
9 9
 	use TextFieldsTrait;
10 10
 
11 11
 	public function __construct($identifier, $label=NULL,$type="text",$value=NULL,$placeholder=NULL) {
12
-		if(!isset($placeholder) && $type==="text")
13
-			$placeholder=$label;
12
+		if(!isset($placeholder) && $type==="text") {
13
+					$placeholder=$label;
14
+		}
14 15
 		parent::__construct("field-".$identifier, new HtmlInput($identifier,$type,$value,$placeholder), $label);
15 16
 		$this->_identifier=$identifier;
16 17
 	}
@@ -18,8 +19,9 @@  discard block
 block discarded – undo
18 19
 	public function getDataField(){
19 20
 		$field= $this->getField();
20 21
 		//TODO check getField
21
-		if($field instanceof HtmlInput)
22
-			$field=$field->getDataField();
22
+		if($field instanceof HtmlInput) {
23
+					$field=$field->getDataField();
24
+		}
23 25
 		return $field;
24 26
 	}
25 27
 }
Please login to merge, or discard this patch.