@@ -2,5 +2,5 @@ |
||
2 | 2 | namespace Ajax\semantic\html\base\constants; |
3 | 3 | use Ajax\common\BaseEnum; |
4 | 4 | abstract class Sens extends BaseEnum { |
5 | - const VERTICAL="vertical", HORIZONTAL="horizontal",NONE=""; |
|
5 | + const VERTICAL="vertical", HORIZONTAL="horizontal", NONE=""; |
|
6 | 6 | } |
@@ -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 | } |
@@ -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",DOWN="down",UP="up",NONE="",BELOW="below"; |
|
5 | + const RIGHT="right", LEFT="left", DOWN="down", UP="up", NONE="", BELOW="below"; |
|
6 | 6 | } |
@@ -5,5 +5,5 @@ |
||
5 | 5 | use Ajax\common\BaseEnum; |
6 | 6 | |
7 | 7 | abstract class CheckboxType extends BaseEnum { |
8 | - const STANDARD="",TOGGLE="toggle",SLIDER="slider"; |
|
8 | + const STANDARD="", TOGGLE="toggle", SLIDER="slider"; |
|
9 | 9 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | $state=\explode(" ", $state); |
14 | 14 | } |
15 | 15 | if (\is_array($elements)) { |
16 | - foreach ( $elements as $element ) { |
|
16 | + foreach ($elements as $element) { |
|
17 | 17 | if ($element instanceof BaseHtml) { |
18 | 18 | self::_add($state, $element); |
19 | 19 | } |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | } |
23 | 23 | |
24 | 24 | private static function _add($states, $element) { |
25 | - foreach ( $states as $state ) { |
|
26 | - $element->addToPropertyCtrl("class", $state, array ($state )); |
|
25 | + foreach ($states as $state) { |
|
26 | + $element->addToPropertyCtrl("class", $state, array($state)); |
|
27 | 27 | } |
28 | 28 | } |
29 | 29 | } |
@@ -2,5 +2,5 @@ |
||
2 | 2 | namespace Ajax\semantic\html\base\constants; |
3 | 3 | use Ajax\common\BaseEnum; |
4 | 4 | abstract class Size extends BaseEnum { |
5 | - const MASSIVE="massive",HUGE="huge",BIG="big",LARGE="large",MEDIUM="",SMALL="small",TINY="tiny",MINI="mini"; |
|
5 | + const MASSIVE="massive", HUGE="huge", BIG="big", LARGE="large", MEDIUM="", SMALL="small", TINY="tiny", MINI="mini"; |
|
6 | 6 | } |
@@ -5,5 +5,5 @@ |
||
5 | 5 | use Ajax\common\BaseEnum; |
6 | 6 | |
7 | 7 | abstract class StepStatus extends BaseEnum { |
8 | - const ACTIVE="active",COMPLETED="completed",DISABLED="disabled",NONE=""; |
|
8 | + const ACTIVE="active", COMPLETED="completed", DISABLED="disabled", NONE=""; |
|
9 | 9 | } |
@@ -12,23 +12,23 @@ |
||
12 | 12 | * @param string $value |
13 | 13 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
14 | 14 | */ |
15 | - public function setTextAlignment($value=TextAlignment::LEFT){ |
|
16 | - return $this->addToPropertyCtrl("class", $value,TextAlignment::getConstants()); |
|
15 | + public function setTextAlignment($value=TextAlignment::LEFT) { |
|
16 | + return $this->addToPropertyCtrl("class", $value, TextAlignment::getConstants()); |
|
17 | 17 | } |
18 | 18 | |
19 | - public function textCenterAligned(){ |
|
19 | + public function textCenterAligned() { |
|
20 | 20 | return $this->setTextAlignment(TextAlignment::CENTER); |
21 | 21 | } |
22 | 22 | |
23 | - public function textJustified(){ |
|
23 | + public function textJustified() { |
|
24 | 24 | return $this->setTextAlignment(TextAlignment::JUSTIFIED); |
25 | 25 | } |
26 | 26 | |
27 | - public function textRightAligned(){ |
|
27 | + public function textRightAligned() { |
|
28 | 28 | return $this->setTextAlignment(TextAlignment::RIGHT); |
29 | 29 | } |
30 | 30 | |
31 | - public function textLeftAligned(){ |
|
31 | + public function textLeftAligned() { |
|
32 | 32 | return $this->setTextAlignment(); |
33 | 33 | } |
34 | 34 | } |
@@ -6,7 +6,7 @@ |
||
6 | 6 | |
7 | 7 | class HtmlCard extends HtmlViewItem { |
8 | 8 | |
9 | - public function __construct($identifier,$content=NULL) { |
|
9 | + public function __construct($identifier, $content=NULL) { |
|
10 | 10 | parent::__construct($identifier, "ui card", $content); |
11 | 11 | } |
12 | 12 | } |