@@ -8,53 +8,53 @@ |
||
8 | 8 | use Ajax\semantic\html\base\constants\Variation; |
9 | 9 | use Ajax\semantic\html\base\traits\IconTrait; |
10 | 10 | |
11 | -class HtmlInput extends HtmlSemDoubleElement{ |
|
11 | +class HtmlInput extends HtmlSemDoubleElement { |
|
12 | 12 | use IconTrait; |
13 | - public function __construct($identifier,$type="text",$value="",$placeholder=""){ |
|
14 | - parent::__construct("div-".$identifier,"div","ui input"); |
|
15 | - $this->content=new \Ajax\common\html\html5\HtmlInput($identifier,$type,$value,$placeholder); |
|
16 | - $this->_states=[State::DISABLED,State::FOCUS,State::ERROR]; |
|
13 | + public function __construct($identifier, $type="text", $value="", $placeholder="") { |
|
14 | + parent::__construct("div-".$identifier, "div", "ui input"); |
|
15 | + $this->content=new \Ajax\common\html\html5\HtmlInput($identifier, $type, $value, $placeholder); |
|
16 | + $this->_states=[State::DISABLED, State::FOCUS, State::ERROR]; |
|
17 | 17 | $this->_variations=[Variation::TRANSPARENT]; |
18 | 18 | } |
19 | 19 | |
20 | - public function setFocus(){ |
|
20 | + public function setFocus() { |
|
21 | 21 | $this->addToProperty("class", State::FOCUS); |
22 | 22 | } |
23 | 23 | |
24 | - public function addLoading(){ |
|
25 | - if($this->_hasIcon===false){ |
|
24 | + public function addLoading() { |
|
25 | + if ($this->_hasIcon===false) { |
|
26 | 26 | throw new \Exception("Input must have an icon for showing a loader, use addIcon before"); |
27 | 27 | } |
28 | 28 | return $this->addToProperty("class", State::LOADING); |
29 | 29 | } |
30 | 30 | |
31 | - public function addLabel($label,$direction=Direction::LEFT,$icon=NULL){ |
|
31 | + public function addLabel($label, $direction=Direction::LEFT, $icon=NULL) { |
|
32 | 32 | $labelO=$label; |
33 | - if(\is_object($label)===false){ |
|
34 | - $labelO=new HtmlLabel("label-".$this->identifier,$label); |
|
35 | - if(isset($icon)) |
|
33 | + if (\is_object($label)===false) { |
|
34 | + $labelO=new HtmlLabel("label-".$this->identifier, $label); |
|
35 | + if (isset($icon)) |
|
36 | 36 | $labelO->addIcon($icon); |
37 | - }else{ |
|
37 | + }else { |
|
38 | 38 | $labelO->addToPropertyCtrl("class", "label", array("label")); |
39 | 39 | } |
40 | 40 | $this->addToProperty("class", $direction." labeled"); |
41 | - $this->addContent($labelO,\strstr($direction,Direction::LEFT)!==false); |
|
41 | + $this->addContent($labelO, \strstr($direction, Direction::LEFT)!==false); |
|
42 | 42 | return $labelO; |
43 | 43 | } |
44 | 44 | |
45 | - public function addLabelToCorner($label,$direction=Direction::LEFT,$icon=NULL){ |
|
46 | - return $this->addLabel($label,$direction." corner",$icon)->toCorner($direction); |
|
45 | + public function addLabelToCorner($label, $direction=Direction::LEFT, $icon=NULL) { |
|
46 | + return $this->addLabel($label, $direction." corner", $icon)->toCorner($direction); |
|
47 | 47 | } |
48 | 48 | |
49 | - public function addAction($action,$direction=Direction::LEFT,$icon=NULL,$labeled=false){ |
|
49 | + public function addAction($action, $direction=Direction::LEFT, $icon=NULL, $labeled=false) { |
|
50 | 50 | $actionO=$action; |
51 | - if(\is_object($action)===false){ |
|
52 | - $actionO=new HtmlButton("action-".$this->identifier,$action); |
|
53 | - if(isset($icon)) |
|
54 | - $actionO->addIcon($icon,true,$labeled); |
|
51 | + if (\is_object($action)===false) { |
|
52 | + $actionO=new HtmlButton("action-".$this->identifier, $action); |
|
53 | + if (isset($icon)) |
|
54 | + $actionO->addIcon($icon, true, $labeled); |
|
55 | 55 | } |
56 | 56 | $this->addToProperty("class", $direction." action"); |
57 | - $this->addContent($actionO,\strstr($direction,Direction::LEFT)!==false); |
|
57 | + $this->addContent($actionO, \strstr($direction, Direction::LEFT)!==false); |
|
58 | 58 | return $actionO; |
59 | 59 | } |
60 | 60 |
@@ -7,16 +7,16 @@ discard block |
||
7 | 7 | trait IconTrait { |
8 | 8 | private $_hasIcon=false; |
9 | 9 | |
10 | - public function addIcon($icon,$direction=Direction::LEFT){ |
|
11 | - if($this->_hasIcon===false){ |
|
10 | + public function addIcon($icon, $direction=Direction::LEFT) { |
|
11 | + if ($this->_hasIcon===false) { |
|
12 | 12 | $iconO=$icon; |
13 | - if(\is_string($icon)){ |
|
13 | + if (\is_string($icon)) { |
|
14 | 14 | $iconO=new HtmlIcon("icon-".$this->identifier, $icon); |
15 | 15 | } |
16 | 16 | $this->addToPropertyCtrl("class", $direction." icon", Direction::getConstantValues("icon")); |
17 | - $this->addContent($iconO,false); |
|
17 | + $this->addContent($iconO, false); |
|
18 | 18 | $this->_hasIcon=true; |
19 | - }else{ |
|
19 | + }else { |
|
20 | 20 | $iconO=$this->getIcon(); |
21 | 21 | $iconO->setIcon($icon); |
22 | 22 | $this->addToPropertyCtrl("class", $direction." icon", Direction::getConstantValues("icon")); |
@@ -24,10 +24,10 @@ discard block |
||
24 | 24 | return $iconO; |
25 | 25 | } |
26 | 26 | |
27 | - public function getIcon(){ |
|
28 | - if(\is_array($this->content)){ |
|
29 | - foreach ($this->content as $item){ |
|
30 | - if($item instanceof HtmlIcon) |
|
27 | + public function getIcon() { |
|
28 | + if (\is_array($this->content)) { |
|
29 | + foreach ($this->content as $item) { |
|
30 | + if ($item instanceof HtmlIcon) |
|
31 | 31 | return $item; |
32 | 32 | } |
33 | 33 | } |
@@ -5,5 +5,5 @@ |
||
5 | 5 | use Ajax\common\BaseEnum; |
6 | 6 | |
7 | 7 | abstract class Emphasis extends BaseEnum { |
8 | - const PRIMARY="primary",SECONDARY="secondary",TERTIARY="tertiary"; |
|
8 | + const PRIMARY="primary", SECONDARY="secondary", TERTIARY="tertiary"; |
|
9 | 9 | } |
10 | 10 | \ No newline at end of file |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | protected $_contentSeparator=""; |
23 | 23 | |
24 | 24 | |
25 | - public function __construct($identifier,$tagName,$baseClass){ |
|
26 | - parent::__construct($identifier,$tagName,$baseClass); |
|
25 | + public function __construct($identifier, $tagName, $baseClass) { |
|
26 | + parent::__construct($identifier, $tagName, $baseClass); |
|
27 | 27 | $this->root=""; |
28 | 28 | $this->attr="data-ajax"; |
29 | 29 | } |
@@ -35,11 +35,11 @@ discard block |
||
35 | 35 | * @param string $attr the html attribute used to build the elements url |
36 | 36 | * @return HtmlNavElement |
37 | 37 | */ |
38 | - public function autoGetOnClick($targetSelector){ |
|
39 | - return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr)); |
|
38 | + public function autoGetOnClick($targetSelector) { |
|
39 | + return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr)); |
|
40 | 40 | } |
41 | 41 | |
42 | - public function contentAsString(){ |
|
42 | + public function contentAsString() { |
|
43 | 43 | return JArray::implode($this->_contentSeparator, $this->content); |
44 | 44 | } |
45 | 45 | |
@@ -47,15 +47,15 @@ discard block |
||
47 | 47 | * Generate the jquery script to set the elements to the HtmlNavElement |
48 | 48 | * @param JsUtils $jsUtils |
49 | 49 | */ |
50 | - public function jsSetContent(JsUtils $jsUtils){ |
|
51 | - $jsUtils->html("#".$this->identifier,str_replace("\"","'", $this->contentAsString()),true); |
|
50 | + public function jsSetContent(JsUtils $jsUtils) { |
|
51 | + $jsUtils->html("#".$this->identifier, str_replace("\"", "'", $this->contentAsString()), true); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | public function getRoot() { |
55 | 55 | return $this->root; |
56 | 56 | } |
57 | 57 | public function setRoot($root) { |
58 | - $this->root = $root; |
|
58 | + $this->root=$root; |
|
59 | 59 | return $this; |
60 | 60 | } |
61 | 61 | public function getAttr() { |
@@ -68,12 +68,12 @@ discard block |
||
68 | 68 | * @return HtmlNavElement |
69 | 69 | */ |
70 | 70 | public function setAttr($attr) { |
71 | - $this->attr = $attr; |
|
71 | + $this->attr=$attr; |
|
72 | 72 | return $this; |
73 | 73 | } |
74 | 74 | |
75 | 75 | public function __call($method, $args) { |
76 | - if(isset($this->$method) && is_callable($this->$method)) { |
|
76 | + if (isset($this->$method) && is_callable($this->$method)) { |
|
77 | 77 | return call_user_func_array( |
78 | 78 | $this->$method, |
79 | 79 | $args |
@@ -81,32 +81,32 @@ discard block |
||
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
84 | - public abstract function fromDispatcher($dispatcher,$startIndex=0); |
|
84 | + public abstract function fromDispatcher($dispatcher, $startIndex=0); |
|
85 | 85 | |
86 | 86 | |
87 | - public function setContentDivider($divider,$index=NULL) { |
|
87 | + public function setContentDivider($divider, $index=NULL) { |
|
88 | 88 | $divider="<div class='divider'> {$divider} </div>"; |
89 | 89 | return $this->setDivider($divider, $index); |
90 | 90 | } |
91 | 91 | |
92 | - public function setIconContentDivider($iconContentDivider,$index=NULL) { |
|
92 | + public function setIconContentDivider($iconContentDivider, $index=NULL) { |
|
93 | 93 | $contentDivider="<i class='".$iconContentDivider." icon divider'></i>"; |
94 | 94 | return $this->setDivider($contentDivider, $index); |
95 | 95 | } |
96 | 96 | |
97 | - protected function setDivider($divider,$index){ |
|
98 | - if(isset($index)){ |
|
99 | - if(\is_array($this->_contentSeparator)===false) |
|
100 | - $this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator); |
|
97 | + protected function setDivider($divider, $index) { |
|
98 | + if (isset($index)) { |
|
99 | + if (\is_array($this->_contentSeparator)===false) |
|
100 | + $this->_contentSeparator=array_fill(0, $this->count()-1, $this->_contentSeparator); |
|
101 | 101 | $this->_contentSeparator[$index]=$divider; |
102 | - }else{ |
|
102 | + }else { |
|
103 | 103 | $this->_contentSeparator=$divider; |
104 | 104 | } |
105 | 105 | return $this; |
106 | 106 | } |
107 | 107 | |
108 | - protected function getContentDivider($index){ |
|
109 | - if(\is_array($this->_contentSeparator)===true){ |
|
108 | + protected function getContentDivider($index) { |
|
109 | + if (\is_array($this->_contentSeparator)===true) { |
|
110 | 110 | return @$this->_contentSeparator[$index]; |
111 | 111 | } |
112 | 112 | return $this->_contentSeparator; |
@@ -20,21 +20,21 @@ |
||
20 | 20 | public static function getDefaultValue($array, $key, $default) { |
21 | 21 | if (array_key_exists($key, $array)) { |
22 | 22 | return $array [$key]; |
23 | - } else |
|
23 | + }else |
|
24 | 24 | return $default; |
25 | 25 | } |
26 | 26 | |
27 | - public static function implode($glue,$pieces){ |
|
27 | + public static function implode($glue, $pieces) { |
|
28 | 28 | $result=""; |
29 | - if(\is_array($glue)){ |
|
29 | + if (\is_array($glue)) { |
|
30 | 30 | $size=\sizeof($pieces); |
31 | - if($size>0){ |
|
32 | - for($i=0;$i<$size-1;$i++){ |
|
31 | + if ($size>0) { |
|
32 | + for ($i=0; $i<$size-1; $i++) { |
|
33 | 33 | $result.=$pieces[$i].@$glue[$i]; |
34 | 34 | } |
35 | 35 | $result.=$pieces[$size-1]; |
36 | 36 | } |
37 | - }else{ |
|
37 | + }else { |
|
38 | 38 | $result=\implode($glue, $pieces); |
39 | 39 | } |
40 | 40 | return $result; |