@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $itemO=$item; |
36 | 36 | if(\is_object($item)===false){ |
37 | 37 | $itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items),$item,$value,$image); |
38 | - }elseif($itemO instanceof HtmlDropdownItem){ |
|
38 | + } elseif($itemO instanceof HtmlDropdownItem){ |
|
39 | 39 | $this->addToProperty("class", "vertical"); |
40 | 40 | } |
41 | 41 | $this->items[]=$itemO; |
@@ -43,8 +43,9 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | public function addInput($name){ |
46 | - if(!isset($name)) |
|
47 | - $name="input-".$this->identifier; |
|
46 | + if(!isset($name)) { |
|
47 | + $name="input-".$this->identifier; |
|
48 | + } |
|
48 | 49 | $this->setAction("activate"); |
49 | 50 | $this->input=new HtmlInput($name,"hidden"); |
50 | 51 | } |
@@ -54,7 +55,7 @@ discard block |
||
54 | 55 | foreach ($items as $k=>$v){ |
55 | 56 | $this->addItem($v)->setData($k); |
56 | 57 | } |
57 | - }else{ |
|
58 | + } else{ |
|
58 | 59 | foreach ($items as $item){ |
59 | 60 | $this->addItem($item); |
60 | 61 | } |
@@ -68,7 +69,7 @@ discard block |
||
68 | 69 | if($dropdown===false){ |
69 | 70 | $this->_template=include dirname(__FILE__).'/../templates/tplDropdownMenu.php'; |
70 | 71 | $dropdown="menu"; |
71 | - }else{ |
|
72 | + } else{ |
|
72 | 73 | $dropdown="dropdown"; |
73 | 74 | $this->mClass="menu"; |
74 | 75 | } |
@@ -84,18 +85,22 @@ discard block |
||
84 | 85 | } |
85 | 86 | |
86 | 87 | public function asButton($floating=false){ |
87 | - if($floating) |
|
88 | - $this->addToProperty("class", "floating"); |
|
88 | + if($floating) { |
|
89 | + $this->addToProperty("class", "floating"); |
|
90 | + } |
|
89 | 91 | return $this->addToProperty("class", "button"); |
90 | 92 | } |
91 | 93 | |
92 | 94 | public function asSelect($name=NULL,$multiple=false,$selection=true){ |
93 | - if(isset($name)) |
|
94 | - $this->addInput($name); |
|
95 | - if($multiple) |
|
96 | - $this->addToProperty("class", "multiple"); |
|
97 | - if ($selection) |
|
98 | - $this->addToPropertyCtrl("class", "selection",array("selection")); |
|
95 | + if(isset($name)) { |
|
96 | + $this->addInput($name); |
|
97 | + } |
|
98 | + if($multiple) { |
|
99 | + $this->addToProperty("class", "multiple"); |
|
100 | + } |
|
101 | + if ($selection) { |
|
102 | + $this->addToPropertyCtrl("class", "selection",array("selection")); |
|
103 | + } |
|
99 | 104 | return $this; |
100 | 105 | } |
101 | 106 | |
@@ -105,8 +110,9 @@ discard block |
||
105 | 110 | } |
106 | 111 | |
107 | 112 | public function setSelect($name=NULL,$multiple=false){ |
108 | - if(!isset($name)) |
|
109 | - $name="select-".$this->identifier; |
|
113 | + if(!isset($name)) { |
|
114 | + $name="select-".$this->identifier; |
|
115 | + } |
|
110 | 116 | $this->input=null; |
111 | 117 | if($multiple){ |
112 | 118 | $this->setProperty("multiple", true); |
@@ -137,7 +143,7 @@ discard block |
||
137 | 143 | public function setValue($value){ |
138 | 144 | if(isset($this->input)){ |
139 | 145 | $this->input->setProperty("value", $value); |
140 | - }else{ |
|
146 | + } else{ |
|
141 | 147 | $this->setProperty("value", $value); |
142 | 148 | } |
143 | 149 | return $this; |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | class HtmlDropdown extends HtmlSemDoubleElement { |
14 | 14 | protected $mClass="menu"; |
15 | 15 | protected $mTagName="div"; |
16 | - protected $items=array (); |
|
16 | + protected $items=array(); |
|
17 | 17 | protected $params=array("action"=>"select"); |
18 | 18 | protected $input; |
19 | 19 | |
@@ -21,40 +21,40 @@ discard block |
||
21 | 21 | parent::__construct($identifier, "div"); |
22 | 22 | $this->_template=include dirname(__FILE__).'/../templates/tplDropdown.php'; |
23 | 23 | $this->setProperty("class", "ui dropdown"); |
24 | - $content=new HtmlSemDoubleElement("","div"); |
|
24 | + $content=new HtmlSemDoubleElement("", "div"); |
|
25 | 25 | $content->setClass("text"); |
26 | 26 | $content->setContent($value); |
27 | - $content->wrap("",new HtmlIcon("", "dropdown")); |
|
27 | + $content->wrap("", new HtmlIcon("", "dropdown")); |
|
28 | 28 | $this->content=array($content); |
29 | 29 | $this->tagName="div"; |
30 | 30 | $this->addItems($items); |
31 | 31 | } |
32 | 32 | |
33 | - public function addItem($item,$value=NULL,$image=NULL){ |
|
33 | + public function addItem($item, $value=NULL, $image=NULL) { |
|
34 | 34 | $itemO=$item; |
35 | - if(\is_object($item)===false){ |
|
36 | - $itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items),$item,$value,$image); |
|
37 | - }elseif($itemO instanceof HtmlDropdownItem){ |
|
35 | + if (\is_object($item)===false) { |
|
36 | + $itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items), $item, $value, $image); |
|
37 | + }elseif ($itemO instanceof HtmlDropdownItem) { |
|
38 | 38 | $this->addToProperty("class", "vertical"); |
39 | 39 | } |
40 | 40 | $this->items[]=$itemO; |
41 | 41 | return $itemO; |
42 | 42 | } |
43 | 43 | |
44 | - public function addInput($name){ |
|
45 | - if(!isset($name)) |
|
44 | + public function addInput($name) { |
|
45 | + if (!isset($name)) |
|
46 | 46 | $name="input-".$this->identifier; |
47 | 47 | $this->setAction("activate"); |
48 | - $this->input=new HtmlInput($name,"hidden"); |
|
48 | + $this->input=new HtmlInput($name, "hidden"); |
|
49 | 49 | } |
50 | 50 | |
51 | - public function addItems($items){ |
|
52 | - if(JArray::isAssociative($items)){ |
|
53 | - foreach ($items as $k=>$v){ |
|
51 | + public function addItems($items) { |
|
52 | + if (JArray::isAssociative($items)) { |
|
53 | + foreach ($items as $k=>$v) { |
|
54 | 54 | $this->addItem($v)->setData($k); |
55 | 55 | } |
56 | - }else{ |
|
57 | - foreach ($items as $item){ |
|
56 | + }else { |
|
57 | + foreach ($items as $item) { |
|
58 | 58 | $this->addItem($item); |
59 | 59 | } |
60 | 60 | } |
@@ -63,51 +63,51 @@ discard block |
||
63 | 63 | /** |
64 | 64 | * @param boolean $dropdown |
65 | 65 | */ |
66 | - public function asDropdown($dropdown){ |
|
67 | - if($dropdown===false){ |
|
66 | + public function asDropdown($dropdown) { |
|
67 | + if ($dropdown===false) { |
|
68 | 68 | $this->_template=include dirname(__FILE__).'/../templates/tplDropdownMenu.php'; |
69 | 69 | $dropdown="menu"; |
70 | - }else{ |
|
70 | + }else { |
|
71 | 71 | $dropdown="dropdown"; |
72 | 72 | $this->mClass="menu"; |
73 | 73 | } |
74 | - return $this->addToPropertyCtrl("class", $dropdown,array("menu","dropdown")); |
|
74 | + return $this->addToPropertyCtrl("class", $dropdown, array("menu", "dropdown")); |
|
75 | 75 | } |
76 | 76 | |
77 | - public function setVertical(){ |
|
78 | - return $this->addToPropertyCtrl("class", "vertical",array("vertical")); |
|
77 | + public function setVertical() { |
|
78 | + return $this->addToPropertyCtrl("class", "vertical", array("vertical")); |
|
79 | 79 | } |
80 | 80 | |
81 | - public function setSimple(){ |
|
82 | - return $this->addToPropertyCtrl("class", "simple",array("simple")); |
|
81 | + public function setSimple() { |
|
82 | + return $this->addToPropertyCtrl("class", "simple", array("simple")); |
|
83 | 83 | } |
84 | 84 | |
85 | - public function asButton($floating=false){ |
|
86 | - if($floating) |
|
85 | + public function asButton($floating=false) { |
|
86 | + if ($floating) |
|
87 | 87 | $this->addToProperty("class", "floating"); |
88 | 88 | return $this->addToProperty("class", "button"); |
89 | 89 | } |
90 | 90 | |
91 | - public function asSelect($name=NULL,$multiple=false,$selection=true){ |
|
92 | - if(isset($name)) |
|
91 | + public function asSelect($name=NULL, $multiple=false, $selection=true) { |
|
92 | + if (isset($name)) |
|
93 | 93 | $this->addInput($name); |
94 | - if($multiple) |
|
94 | + if ($multiple) |
|
95 | 95 | $this->addToProperty("class", "multiple"); |
96 | 96 | if ($selection) |
97 | - $this->addToPropertyCtrl("class", "selection",array("selection")); |
|
97 | + $this->addToPropertyCtrl("class", "selection", array("selection")); |
|
98 | 98 | return $this; |
99 | 99 | } |
100 | 100 | |
101 | - public function asSearch($name=NULL,$multiple=false,$selection=false){ |
|
102 | - $this->asSelect($name,$multiple,$selection); |
|
101 | + public function asSearch($name=NULL, $multiple=false, $selection=false) { |
|
102 | + $this->asSelect($name, $multiple, $selection); |
|
103 | 103 | return $this->addToProperty("class", "search"); |
104 | 104 | } |
105 | 105 | |
106 | - public function setSelect($name=NULL,$multiple=false){ |
|
107 | - if(!isset($name)) |
|
106 | + public function setSelect($name=NULL, $multiple=false) { |
|
107 | + if (!isset($name)) |
|
108 | 108 | $name="select-".$this->identifier; |
109 | 109 | $this->input=null; |
110 | - if($multiple){ |
|
110 | + if ($multiple) { |
|
111 | 111 | $this->setProperty("multiple", true); |
112 | 112 | $this->addToProperty("class", "multiple"); |
113 | 113 | } |
@@ -115,28 +115,28 @@ discard block |
||
115 | 115 | $this->tagName="select"; |
116 | 116 | $this->setProperty("name", $name); |
117 | 117 | $this->content=null; |
118 | - foreach ($this->items as $item){ |
|
118 | + foreach ($this->items as $item) { |
|
119 | 119 | $item->asOption(); |
120 | 120 | } |
121 | 121 | return $this; |
122 | 122 | } |
123 | 123 | |
124 | - public function asSubmenu($pointing=NULL){ |
|
124 | + public function asSubmenu($pointing=NULL) { |
|
125 | 125 | $this->setClass("ui dropdown link item"); |
126 | - if(isset($pointing)){ |
|
126 | + if (isset($pointing)) { |
|
127 | 127 | $this->setPointing($pointing); |
128 | 128 | } |
129 | 129 | return $this; |
130 | 130 | } |
131 | 131 | |
132 | - public function setPointing($value=Direction::NONE){ |
|
133 | - return $this->addToPropertyCtrl("class", $value." pointing",Direction::getConstantValues("pointing")); |
|
132 | + public function setPointing($value=Direction::NONE) { |
|
133 | + return $this->addToPropertyCtrl("class", $value." pointing", Direction::getConstantValues("pointing")); |
|
134 | 134 | } |
135 | 135 | |
136 | - public function setValue($value){ |
|
137 | - if(isset($this->input)){ |
|
136 | + public function setValue($value) { |
|
137 | + if (isset($this->input)) { |
|
138 | 138 | $this->input->setProperty("value", $value); |
139 | - }else{ |
|
139 | + }else { |
|
140 | 140 | $this->setProperty("value", $value); |
141 | 141 | } |
142 | 142 | return $this; |
@@ -147,14 +147,14 @@ discard block |
||
147 | 147 | * @see BaseHtml::run() |
148 | 148 | */ |
149 | 149 | public function run(JsUtils $js) { |
150 | - if($this->propertyContains("class", "simple")===false){ |
|
151 | - $this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier,$this->params); |
|
150 | + if ($this->propertyContains("class", "simple")===false) { |
|
151 | + $this->_bsComponent=$js->semantic()->dropdown("#".$this->identifier, $this->params); |
|
152 | 152 | $this->addEventsOnRun($js); |
153 | 153 | return $this->_bsComponent; |
154 | 154 | } |
155 | 155 | } |
156 | 156 | |
157 | - public function setAction($action){ |
|
157 | + public function setAction($action) { |
|
158 | 158 | $this->params["action"]=$action; |
159 | 159 | } |
160 | 160 | } |
161 | 161 | \ No newline at end of file |
@@ -15,8 +15,9 @@ discard block |
||
15 | 15 | if(isset($type)){ |
16 | 16 | if($type=="page"){ |
17 | 17 | $this->asPageHeader($niveau); |
18 | - }else |
|
19 | - $this->asContentHeader($niveau); |
|
18 | + } else { |
|
19 | + $this->asContentHeader($niveau); |
|
20 | + } |
|
20 | 21 | } |
21 | 22 | $this->content=$content; |
22 | 23 | } |
@@ -48,7 +49,7 @@ discard block |
||
48 | 49 | if(!\is_object($title)){ |
49 | 50 | $this->content=new HtmlDoubleElement("content-".$this->identifier,"div"); |
50 | 51 | $this->content->setContent($title); |
51 | - }else{ |
|
52 | + } else{ |
|
52 | 53 | $this->content=$title; |
53 | 54 | } |
54 | 55 | $this->content->setClass("content"); |
@@ -8,11 +8,11 @@ discard block |
||
8 | 8 | |
9 | 9 | class HtmlHeader extends HtmlSemDoubleElement { |
10 | 10 | protected $image; |
11 | - public function __construct($identifier, $niveau=1,$content=NULL,$type="page") { |
|
12 | - parent::__construct($identifier, "div","ui header"); |
|
11 | + public function __construct($identifier, $niveau=1, $content=NULL, $type="page") { |
|
12 | + parent::__construct($identifier, "div", "ui header"); |
|
13 | 13 | $this->_template="<%tagName% %properties%>%image%%content%</%tagName%>"; |
14 | - if(isset($type)){ |
|
15 | - if($type=="page"){ |
|
14 | + if (isset($type)) { |
|
15 | + if ($type=="page") { |
|
16 | 16 | $this->asPageHeader($niveau); |
17 | 17 | }else |
18 | 18 | $this->asContentHeader($niveau); |
@@ -20,39 +20,39 @@ discard block |
||
20 | 20 | $this->content=$content; |
21 | 21 | } |
22 | 22 | |
23 | - public function asPageHeader($niveau){ |
|
23 | + public function asPageHeader($niveau) { |
|
24 | 24 | $this->tagName="h".$niveau; |
25 | 25 | } |
26 | 26 | |
27 | - public function asContentHeader($niveau){ |
|
27 | + public function asContentHeader($niveau) { |
|
28 | 28 | $this->tagName="div"; |
29 | - if(\is_int($niveau)){ |
|
29 | + if (\is_int($niveau)) { |
|
30 | 30 | $niveau=Size::getConstantValues()[$niveau]; |
31 | 31 | } |
32 | 32 | $this->setSize($niveau); |
33 | 33 | } |
34 | 34 | |
35 | - public function asIcon($icon,$title,$subHeader=NULL){ |
|
35 | + public function asIcon($icon, $title, $subHeader=NULL) { |
|
36 | 36 | $this->addToProperty("class", "icon"); |
37 | 37 | $this->image=new HtmlIcon("icon-".$this->identifier, $icon); |
38 | - return $this->asTitle($title,$subHeader); |
|
38 | + return $this->asTitle($title, $subHeader); |
|
39 | 39 | } |
40 | 40 | |
41 | - public function asImage($src,$title,$subHeader=NULL){ |
|
42 | - $this->image=new HtmlImage("img-".$this->identifier, $src,$title); |
|
43 | - return $this->asTitle($title,$subHeader); |
|
41 | + public function asImage($src, $title, $subHeader=NULL) { |
|
42 | + $this->image=new HtmlImage("img-".$this->identifier, $src, $title); |
|
43 | + return $this->asTitle($title, $subHeader); |
|
44 | 44 | } |
45 | 45 | |
46 | - public function asTitle($title,$subHeader=NULL){ |
|
47 | - if(!\is_object($title)){ |
|
48 | - $this->content=new HtmlDoubleElement("content-".$this->identifier,"div"); |
|
46 | + public function asTitle($title, $subHeader=NULL) { |
|
47 | + if (!\is_object($title)) { |
|
48 | + $this->content=new HtmlDoubleElement("content-".$this->identifier, "div"); |
|
49 | 49 | $this->content->setContent($title); |
50 | - }else{ |
|
50 | + }else { |
|
51 | 51 | $this->content=$title; |
52 | 52 | } |
53 | 53 | $this->content->setClass("content"); |
54 | - if(isset($subHeader)){ |
|
55 | - $sub=new HtmlDoubleElement("subheader-".$this->identifier,"div"); |
|
54 | + if (isset($subHeader)) { |
|
55 | + $sub=new HtmlDoubleElement("subheader-".$this->identifier, "div"); |
|
56 | 56 | $sub->setClass("sub header"); |
57 | 57 | $sub->setContent($subHeader); |
58 | 58 | $this->content->addContent($sub); |
@@ -4,7 +4,6 @@ |
||
4 | 4 | use Ajax\semantic\html\base\constants\Side; |
5 | 5 | trait AttachedTrait { |
6 | 6 | /** |
7 | - * @param string $side |
|
8 | 7 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
9 | 8 | */ |
10 | 9 | public function setAttachment($value=Side::BOTH){ |
@@ -7,7 +7,7 @@ |
||
7 | 7 | * @param string $side |
8 | 8 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
9 | 9 | */ |
10 | - public function setAttachment($value=Side::BOTH){ |
|
11 | - return $this->addToPropertyCtrl("class",$value." attached",Side::getConstantValues("attached")); |
|
10 | + public function setAttachment($value=Side::BOTH) { |
|
11 | + return $this->addToPropertyCtrl("class", $value." attached", Side::getConstantValues("attached")); |
|
12 | 12 | } |
13 | 13 | } |
14 | 14 | \ No newline at end of file |
@@ -20,6 +20,9 @@ |
||
20 | 20 | protected $_tabsType="tabs"; |
21 | 21 | protected $stacked=""; |
22 | 22 | |
23 | + /** |
|
24 | + * @param string $identifier |
|
25 | + */ |
|
23 | 26 | public function __construct($identifier, $tagName="ul") { |
24 | 27 | parent::__construct($identifier, $tagName); |
25 | 28 | $this->_template="<%tagName% %properties%>%tabs%</%tagName%>%content%"; |
@@ -11,8 +11,8 @@ discard block |
||
11 | 11 | */ |
12 | 12 | class HtmlDivider extends HtmlDoubleElement { |
13 | 13 | |
14 | - public function __construct($identifier, $content="",$tagName="div") { |
|
15 | - parent::__construct($identifier, $tagName,"ui divider"); |
|
14 | + public function __construct($identifier, $content="", $tagName="div") { |
|
15 | + parent::__construct($identifier, $tagName, "ui divider"); |
|
16 | 16 | $this->content=$content; |
17 | 17 | } |
18 | 18 | |
@@ -20,23 +20,23 @@ discard block |
||
20 | 20 | * vertical divider |
21 | 21 | * @return \Ajax\semantic\html\elements\HtmlDivider |
22 | 22 | */ |
23 | - public function setVertical(){ |
|
24 | - return $this->addToPropertyUnique("class", "vertical", array("vertical","horizontal")); |
|
23 | + public function setVertical() { |
|
24 | + return $this->addToPropertyUnique("class", "vertical", array("vertical", "horizontal")); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
28 | 28 | * horizontal divider |
29 | 29 | * @return \Ajax\semantic\html\elements\HtmlDivider |
30 | 30 | */ |
31 | - public function setHorizontal(){ |
|
32 | - return $this->addToPropertyUnique("class", "horizontal", array("vertical","horizontal")); |
|
31 | + public function setHorizontal() { |
|
32 | + return $this->addToPropertyUnique("class", "horizontal", array("vertical", "horizontal")); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
36 | 36 | * hide the divider |
37 | 37 | * @return \Ajax\semantic\html\elements\HtmlDivider |
38 | 38 | */ |
39 | - public function setHidden(){ |
|
39 | + public function setHidden() { |
|
40 | 40 | return $this->addToProperty("class", "hidden"); |
41 | 41 | } |
42 | 42 | |
@@ -44,14 +44,14 @@ discard block |
||
44 | 44 | * fitted, without any space above or below it |
45 | 45 | * @return \Ajax\semantic\html\elements\HtmlDivider |
46 | 46 | */ |
47 | - public function setFitted(){ |
|
47 | + public function setFitted() { |
|
48 | 48 | return $this->addToProperty("class", "fitted"); |
49 | 49 | } |
50 | 50 | |
51 | 51 | /** |
52 | 52 | * @return \Ajax\semantic\html\elements\HtmlDivider |
53 | 53 | */ |
54 | - public function asHeader(){ |
|
54 | + public function asHeader() { |
|
55 | 55 | return $this->addToProperty("class", "header"); |
56 | 56 | } |
57 | 57 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * inverts the divider colors |
60 | 60 | * @return \Ajax\semantic\html\elements\HtmlDivider |
61 | 61 | */ |
62 | - public function setInverted(){ |
|
62 | + public function setInverted() { |
|
63 | 63 | return $this->addToProperty("class", "inverted"); |
64 | 64 | } |
65 | 65 | } |
66 | 66 | \ No newline at end of file |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | |
14 | 14 | public static function getConstants() { |
15 | 15 | if (self::$constCacheArray==NULL) { |
16 | - self::$constCacheArray=[ ]; |
|
16 | + self::$constCacheArray=[]; |
|
17 | 17 | } |
18 | 18 | $calledClass=get_called_class(); |
19 | 19 | if (!array_key_exists($calledClass, self::$constCacheArray)) { |
@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | return self::$constCacheArray [$calledClass]; |
24 | 24 | } |
25 | 25 | |
26 | - public static function getConstantValues($postFix=""){ |
|
27 | - if($postFix!=="") |
|
26 | + public static function getConstantValues($postFix="") { |
|
27 | + if ($postFix!=="") |
|
28 | 28 | return \array_values(self::getConstants()); |
29 | - else{ |
|
30 | - return \array_map(function ($elem) use ($postFix) {return $elem." ".$postFix;},\array_values(self::getConstants())); |
|
29 | + else { |
|
30 | + return \array_map(function($elem) use ($postFix) {return $elem." ".$postFix; },\array_values(self::getConstants())); |
|
31 | 31 | } |
32 | 32 | } |
33 | 33 |
@@ -24,9 +24,9 @@ |
||
24 | 24 | } |
25 | 25 | |
26 | 26 | public static function getConstantValues($postFix=""){ |
27 | - if($postFix!=="") |
|
28 | - return \array_values(self::getConstants()); |
|
29 | - else{ |
|
27 | + if($postFix!=="") { |
|
28 | + return \array_values(self::getConstants()); |
|
29 | + } else{ |
|
30 | 30 | return \array_map(function ($elem) use ($postFix) {return $elem." ".$postFix;},\array_values(self::getConstants())); |
31 | 31 | } |
32 | 32 | } |
@@ -9,10 +9,10 @@ |
||
9 | 9 | * @author jc |
10 | 10 | * @version 1.001 |
11 | 11 | */ |
12 | -abstract class HtmlSemCollection extends HtmlCollection{ |
|
12 | +abstract class HtmlSemCollection extends HtmlCollection { |
|
13 | 13 | use BaseTrait; |
14 | - public function __construct( $identifier, $tagName="div",$baseClass="ui"){ |
|
15 | - parent::__construct( $identifier, $tagName="div"); |
|
14 | + public function __construct($identifier, $tagName="div", $baseClass="ui") { |
|
15 | + parent::__construct($identifier, $tagName="div"); |
|
16 | 16 | $this->_baseClass=$baseClass; |
17 | 17 | $this->setClass($baseClass); |
18 | 18 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | |
14 | 14 | class HtmlSemSingleElement extends HtmlSingleElement { |
15 | 15 | use BaseTrait; |
16 | - public function __construct($identifier, $tagName="br",$baseClass="ui") { |
|
16 | + public function __construct($identifier, $tagName="br", $baseClass="ui") { |
|
17 | 17 | parent::__construct($identifier, $tagName); |
18 | 18 | $this->_baseClass=$baseClass; |
19 | 19 | $this->setClass($baseClass); |
@@ -5,5 +5,5 @@ |
||
5 | 5 | use Ajax\common\BaseEnum; |
6 | 6 | |
7 | 7 | class TextAlignment extends BaseEnum { |
8 | - const LEFT="left aligned",CENTER="center aligned",RIGHT="right aligned",JUSTIFIED="justified"; |
|
8 | + const LEFT="left aligned", CENTER="center aligned", RIGHT="right aligned", JUSTIFIED="justified"; |
|
9 | 9 | } |
10 | 10 | \ No newline at end of file |
@@ -2,5 +2,5 @@ |
||
2 | 2 | namespace Ajax\semantic\html\base\constants; |
3 | 3 | use Ajax\common\BaseEnum; |
4 | 4 | abstract class Direction extends BaseEnum { |
5 | - const RIGHT="right", LEFT="left",NONE=""; |
|
5 | + const RIGHT="right", LEFT="left", NONE=""; |
|
6 | 6 | } |
7 | 7 | \ No newline at end of file |