@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | * @param int $max |
14 | 14 | * @param string $icon star or heart |
15 | 15 | */ |
16 | - public function __construct($identifier, $value,$max=5,$icon="") { |
|
16 | + public function __construct($identifier, $value, $max=5, $icon="") { |
|
17 | 17 | parent::__construct($identifier, "div", "ui {$icon} rating"); |
18 | 18 | $this->setValue($value); |
19 | 19 | $this->setMax($max); |
@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | * {@inheritDoc} |
24 | 24 | * @see \Ajax\common\html\HtmlDoubleElement::setValue() |
25 | 25 | */ |
26 | - public function setValue($value){ |
|
26 | + public function setValue($value) { |
|
27 | 27 | $this->setProperty("data-rating", $value); |
28 | 28 | } |
29 | 29 | |
30 | - public function setMax($max){ |
|
30 | + public function setMax($max) { |
|
31 | 31 | $this->setProperty("data-max-rating", $max); |
32 | 32 | } |
33 | 33 | |
@@ -35,20 +35,20 @@ discard block |
||
35 | 35 | * {@inheritDoc} |
36 | 36 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
37 | 37 | */ |
38 | - public function run(JsUtils $js){ |
|
38 | + public function run(JsUtils $js) { |
|
39 | 39 | parent::run($js); |
40 | - return $js->semantic()->rating("#".$this->identifier,$this->_params); |
|
40 | + return $js->semantic()->rating("#".$this->identifier, $this->_params); |
|
41 | 41 | } |
42 | 42 | |
43 | - public function asStar(){ |
|
43 | + public function asStar() { |
|
44 | 44 | return $this->setIcon(); |
45 | 45 | } |
46 | 46 | |
47 | - public function asHeart(){ |
|
47 | + public function asHeart() { |
|
48 | 48 | return $this->setIcon("heart"); |
49 | 49 | } |
50 | 50 | |
51 | - public function setIcon($icon="star"){ |
|
52 | - return $this->addToPropertyCtrl("class", $icon, ["star","heart",""]); |
|
51 | + public function setIcon($icon="star") { |
|
52 | + return $this->addToPropertyCtrl("class", $icon, ["star", "heart", ""]); |
|
53 | 53 | } |
54 | 54 | } |
55 | 55 | \ No newline at end of file |
@@ -18,8 +18,9 @@ |
||
18 | 18 | if (isset($type)) { |
19 | 19 | if ($type=="page") { |
20 | 20 | $this->asPageHeader($niveau); |
21 | - } else |
|
22 | - $this->asContentHeader($niveau); |
|
21 | + } else { |
|
22 | + $this->asContentHeader($niveau); |
|
23 | + } |
|
23 | 24 | } |
24 | 25 | $this->content=$content; |
25 | 26 | } |
@@ -10,23 +10,23 @@ discard block |
||
10 | 10 | use Ajax\semantic\html\base\traits\AttachedTrait; |
11 | 11 | |
12 | 12 | class HtmlHeader extends HtmlSemDoubleElement { |
13 | - use TextAlignmentTrait,AttachedTrait; |
|
13 | + use TextAlignmentTrait, AttachedTrait; |
|
14 | 14 | protected $image; |
15 | 15 | |
16 | 16 | public function __construct($identifier, $niveau=1, $content=NULL, $type="page") { |
17 | 17 | parent::__construct($identifier, "div", "ui header"); |
18 | 18 | $this->_template="<%tagName% %properties%>%image%%content%</%tagName%>"; |
19 | 19 | if (isset($type)) { |
20 | - if ($type == "page") { |
|
20 | + if ($type=="page") { |
|
21 | 21 | $this->asPageHeader($niveau); |
22 | - } else |
|
22 | + }else |
|
23 | 23 | $this->asContentHeader($niveau); |
24 | 24 | } |
25 | 25 | $this->content=$content; |
26 | 26 | } |
27 | 27 | |
28 | 28 | public function asPageHeader($niveau) { |
29 | - $this->tagName="h" . $niveau; |
|
29 | + $this->tagName="h".$niveau; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | public function asContentHeader($niveau) { |
@@ -39,25 +39,25 @@ discard block |
||
39 | 39 | |
40 | 40 | public function asIcon($icon, $title, $subHeader=NULL) { |
41 | 41 | $this->addToProperty("class", "icon"); |
42 | - $this->image=new HtmlIcon("icon-" . $this->identifier, $icon); |
|
42 | + $this->image=new HtmlIcon("icon-".$this->identifier, $icon); |
|
43 | 43 | return $this->asTitle($title, $subHeader); |
44 | 44 | } |
45 | 45 | |
46 | 46 | public function asImage($src, $title, $subHeader=NULL) { |
47 | - $this->image=new HtmlImg("img-" . $this->identifier, $src, $title); |
|
47 | + $this->image=new HtmlImg("img-".$this->identifier, $src, $title); |
|
48 | 48 | return $this->asTitle($title, $subHeader); |
49 | 49 | } |
50 | 50 | |
51 | 51 | public function asTitle($title, $subHeader=NULL) { |
52 | 52 | if (!\is_object($title)) { |
53 | - $this->content=new HtmlDoubleElement("content-" . $this->identifier, "div"); |
|
53 | + $this->content=new HtmlDoubleElement("content-".$this->identifier, "div"); |
|
54 | 54 | $this->content->setContent($title); |
55 | - } else { |
|
55 | + }else { |
|
56 | 56 | $this->content=$title; |
57 | 57 | } |
58 | 58 | $this->content->setClass("content"); |
59 | 59 | if (isset($subHeader)) { |
60 | - $sub=new HtmlDoubleElement("subheader-" . $this->identifier, "div"); |
|
60 | + $sub=new HtmlDoubleElement("subheader-".$this->identifier, "div"); |
|
61 | 61 | $sub->setClass("sub header"); |
62 | 62 | $sub->setContent($subHeader); |
63 | 63 | $this->content->addContent($sub); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | * @param int $rowCount |
14 | 14 | * @param int $colCount |
15 | 15 | */ |
16 | - public function htmlTable($identifier, $rowCount, $colCount){ |
|
16 | + public function htmlTable($identifier, $rowCount, $colCount) { |
|
17 | 17 | return $this->addHtmlComponent(new HtmlTable($identifier, $rowCount, $colCount)); |
18 | 18 | } |
19 | 19 | } |
20 | 20 | \ No newline at end of file |
@@ -6,6 +6,9 @@ |
||
6 | 6 | |
7 | 7 | trait CheckboxTrait { |
8 | 8 | |
9 | + /** |
|
10 | + * @param string $name |
|
11 | + */ |
|
9 | 12 | public abstract function addToPropertyCtrl($name, $value, $typeCtrl); |
10 | 13 | |
11 | 14 | public function setType($checkboxType) { |
@@ -15,7 +15,7 @@ |
||
15 | 15 | class HtmlFormCheckbox extends HtmlFormField { |
16 | 16 | use CheckboxTrait; |
17 | 17 | public function __construct($identifier, $label=NULL, $value=NULL, $type=NULL) { |
18 | - parent::__construct("field-".$identifier, new HtmlCheckbox($identifier,$label,$value,$type)); |
|
18 | + parent::__construct("field-".$identifier, new HtmlCheckbox($identifier, $label, $value, $type)); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | public static function slider($identifier, $label="", $value=NULL) { |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | use Ajax\semantic\html\base\constants\CheckboxType; |
7 | 7 | |
8 | 8 | abstract class AbstractCheckbox extends HtmlSemDoubleElement { |
9 | - protected $_params=array (); |
|
9 | + protected $_params=array(); |
|
10 | 10 | |
11 | 11 | public function __construct($identifier, $name=NULL, $label=NULL, $value=NULL, $inputType="checkbox", $type="checkbox") { |
12 | 12 | parent::__construct("ck-".$identifier, "div", "ui ".$type); |
@@ -73,9 +73,9 @@ discard block |
||
73 | 73 | * @return \Ajax\semantic\html\collections\form\AbstractHtmlFormRadioCheckbox |
74 | 74 | */ |
75 | 75 | public function attachEvent($selector, $action=NULL) { |
76 | - if (isset($action)!==false||\is_numeric($action)===true) { |
|
76 | + if (isset($action)!==false || \is_numeric($action)===true) { |
|
77 | 77 | $js='$("#%identifier%").checkbox("attach events", "'.$selector.'", "'.$action.'");'; |
78 | - } else { |
|
78 | + }else { |
|
79 | 79 | $js='$("#%identifier%").checkbox("attach events", "'.$selector.'");'; |
80 | 80 | } |
81 | 81 | $js=\str_replace("%identifier%", $this->identifier, $js); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | */ |
90 | 90 | public function attachEvents($events=array()) { |
91 | 91 | if (\is_array($events)) { |
92 | - foreach ( $events as $action => $selector ) { |
|
92 | + foreach ($events as $action => $selector) { |
|
93 | 93 | $this->attachEvent($selector, $action); |
94 | 94 | } |
95 | 95 | } |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | $field=new \Ajax\common\html\html5\HtmlInput($identifier, $inputType, $value); |
14 | 14 | $field->setProperty("name", $name); |
15 | 15 | $this->setField($field); |
16 | - if (isset($label)) |
|
17 | - $this->setLabel($label); |
|
16 | + if (isset($label)) { |
|
17 | + $this->setLabel($label); |
|
18 | + } |
|
18 | 19 | } |
19 | 20 | |
20 | 21 | public function setType($checkboxType) { |
@@ -40,8 +41,9 @@ discard block |
||
40 | 41 | * @return mixed |
41 | 42 | */ |
42 | 43 | public function getLabel() { |
43 | - if (\array_key_exists("label", $this->content)) |
|
44 | - return $this->content["label"]; |
|
44 | + if (\array_key_exists("label", $this->content)) { |
|
45 | + return $this->content["label"]; |
|
46 | + } |
|
45 | 47 | } |
46 | 48 | |
47 | 49 | /** |
@@ -33,8 +33,9 @@ discard block |
||
33 | 33 | $labelO=$label; |
34 | 34 | if (\is_object($label)===false) { |
35 | 35 | $labelO=new HtmlLabel("label-".$this->identifier, $label); |
36 | - if (isset($icon)) |
|
37 | - $labelO->addIcon($icon); |
|
36 | + if (isset($icon)) { |
|
37 | + $labelO->addIcon($icon); |
|
38 | + } |
|
38 | 39 | } else { |
39 | 40 | $labelO->addToPropertyCtrl("class", "label", array ("label" )); |
40 | 41 | } |
@@ -51,8 +52,9 @@ discard block |
||
51 | 52 | $actionO=$action; |
52 | 53 | if (\is_object($action)===false) { |
53 | 54 | $actionO=new HtmlButton("action-".$this->identifier, $action); |
54 | - if (isset($icon)) |
|
55 | - $actionO->addIcon($icon, true, $labeled); |
|
55 | + if (isset($icon)) { |
|
56 | + $actionO->addIcon($icon, true, $labeled); |
|
57 | + } |
|
56 | 58 | } |
57 | 59 | $this->addToProperty("class", $direction." action"); |
58 | 60 | $this->addContent($actionO, \strstr($direction, Direction::LEFT)!==false); |
@@ -12,10 +12,10 @@ discard block |
||
12 | 12 | use IconTrait; |
13 | 13 | |
14 | 14 | public function __construct($identifier, $type="text", $value="", $placeholder="") { |
15 | - parent::__construct("div-" . $identifier, "div", "ui input"); |
|
16 | - $this->content=[ "field" => new \Ajax\common\html\html5\HtmlInput($identifier, $type, $value, $placeholder) ]; |
|
17 | - $this->_states=[ State::DISABLED,State::FOCUS,State::ERROR ]; |
|
18 | - $this->_variations=[ Variation::TRANSPARENT ]; |
|
15 | + parent::__construct("div-".$identifier, "div", "ui input"); |
|
16 | + $this->content=["field" => new \Ajax\common\html\html5\HtmlInput($identifier, $type, $value, $placeholder)]; |
|
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 |
||
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 |
||
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 |
@@ -54,9 +54,9 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | public function setFocusable($value=true) { |
57 | - if ($value === true) |
|
58 | - $this->setProperty("tabindex", "0"); |
|
59 | - else { |
|
57 | + if ($value === true) { |
|
58 | + $this->setProperty("tabindex", "0"); |
|
59 | + } else { |
|
60 | 60 | $this->removeProperty("tabindex"); |
61 | 61 | } |
62 | 62 | return $this; |
@@ -181,8 +181,9 @@ discard block |
||
181 | 181 | } |
182 | 182 | |
183 | 183 | public static function social($identifier, $social, $value=NULL) { |
184 | - if ($value === NULL) |
|
185 | - $value=\ucfirst($social); |
|
184 | + if ($value === NULL) { |
|
185 | + $value=\ucfirst($social); |
|
186 | + } |
|
186 | 187 | $return=new HtmlButton($identifier, $value); |
187 | 188 | $return->addIcon($social); |
188 | 189 | return $return->addToPropertyCtrl("class", $social, Social::getConstants()); |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | /** |
38 | 38 | * Set the button value |
39 | 39 | * @param string $value |
40 | - * @return \Ajax\semantic\html\HtmlButton |
|
40 | + * @return HtmlButton |
|
41 | 41 | */ |
42 | 42 | public function setValue($value) { |
43 | 43 | $this->content=$value; |
@@ -46,8 +46,8 @@ discard block |
||
46 | 46 | |
47 | 47 | /** |
48 | 48 | * define the button style |
49 | - * @param string|int $cssStyle |
|
50 | - * @return \Ajax\semantic\html\HtmlButton default : "" |
|
49 | + * @param string $cssStyle |
|
50 | + * @return HtmlButton default : "" |
|
51 | 51 | */ |
52 | 52 | public function setStyle($cssStyle) { |
53 | 53 | return $this->addToProperty("class", $cssStyle); |
@@ -55,7 +55,7 @@ discard block |
||
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 |
||
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 |
||
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; |
@@ -105,9 +105,9 @@ discard block |
||
105 | 105 | public function addLabel($caption, $before=false) { |
106 | 106 | $this->tagName="div"; |
107 | 107 | $this->addToProperty("class", "labeled"); |
108 | - $this->content=new HtmlButton("button-" . $this->identifier, $this->content); |
|
108 | + $this->content=new HtmlButton("button-".$this->identifier, $this->content); |
|
109 | 109 | $this->content->setTagName("div"); |
110 | - $label=new HtmlLabel("label-" . $this->identifier, $caption, "a"); |
|
110 | + $label=new HtmlLabel("label-".$this->identifier, $caption, "a"); |
|
111 | 111 | $label->setBasic(); |
112 | 112 | $this->addContent($label, $before); |
113 | 113 | return $label; |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | */ |
120 | 120 | public function fromArray($array) { |
121 | 121 | $array=parent::fromArray($array); |
122 | - foreach ( $array as $key => $value ) { |
|
122 | + foreach ($array as $key => $value) { |
|
123 | 123 | $this->setProperty($key, $value); |
124 | 124 | } |
125 | 125 | return $array; |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | } |
183 | 183 | |
184 | 184 | public static function social($identifier, $social, $value=NULL) { |
185 | - if ($value === NULL) |
|
185 | + if ($value===NULL) |
|
186 | 186 | $value=\ucfirst($social); |
187 | 187 | $return=new HtmlButton($identifier, $value); |
188 | 188 | $return->addIcon($social); |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | } |
203 | 203 | |
204 | 204 | public function asLink($href=NULL) { |
205 | - $lnk=new HtmlLink("lnk-".$this->identifier,$href,$this->content); |
|
205 | + $lnk=new HtmlLink("lnk-".$this->identifier, $href, $this->content); |
|
206 | 206 | $this->content=$lnk; |
207 | 207 | return $this; |
208 | 208 | } |
@@ -30,10 +30,10 @@ |
||
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) { |
@@ -20,8 +20,9 @@ discard block |
||
20 | 20 | public function __construct($identifier, $width=NULL) { |
21 | 21 | parent::__construct($identifier, "div"); |
22 | 22 | $this->setClass("column"); |
23 | - if (isset($width)) |
|
24 | - $this->setWidth($width); |
|
23 | + if (isset($width)) { |
|
24 | + $this->setWidth($width); |
|
25 | + } |
|
25 | 26 | } |
26 | 27 | |
27 | 28 | /** |
@@ -48,10 +49,11 @@ discard block |
||
48 | 49 | |
49 | 50 | public function addDivider($vertical=true, $content=NULL) { |
50 | 51 | $divider=new HtmlDivider("", $content); |
51 | - if ($vertical) |
|
52 | - $divider->setVertical(); |
|
53 | - else |
|
54 | - $divider->setHorizontal(); |
|
52 | + if ($vertical) { |
|
53 | + $divider->setVertical(); |
|
54 | + } else { |
|
55 | + $divider->setHorizontal(); |
|
56 | + } |
|
55 | 57 | $this->wrap("", $divider); |
56 | 58 | return $divider; |
57 | 59 | } |