@@ -12,36 +12,36 @@ discard block |
||
12 | 12 | */ |
13 | 13 | abstract class HtmlCollection extends HtmlDoubleElement { |
14 | 14 | |
15 | - public function __construct($identifier,$tagName="div"){ |
|
16 | - parent::__construct($identifier,$tagName); |
|
15 | + public function __construct($identifier, $tagName="div") { |
|
16 | + parent::__construct($identifier, $tagName); |
|
17 | 17 | $this->content=array(); |
18 | 18 | } |
19 | 19 | |
20 | - public function addItems($items){ |
|
21 | - if(JArray::isAssociative($items)){ |
|
22 | - foreach ($items as $k=>$v){ |
|
23 | - $this->addItem([$k,$v]); |
|
20 | + public function addItems($items) { |
|
21 | + if (JArray::isAssociative($items)) { |
|
22 | + foreach ($items as $k=>$v) { |
|
23 | + $this->addItem([$k, $v]); |
|
24 | 24 | } |
25 | - }else{ |
|
26 | - foreach ($items as $item){ |
|
25 | + } else { |
|
26 | + foreach ($items as $item) { |
|
27 | 27 | $this->addItem($item); |
28 | 28 | } |
29 | 29 | } |
30 | 30 | return $this; |
31 | 31 | } |
32 | 32 | |
33 | - public function setItems($items){ |
|
33 | + public function setItems($items) { |
|
34 | 34 | $this->content=$items; |
35 | 35 | return $this; |
36 | 36 | } |
37 | 37 | |
38 | - public function getItems(){ |
|
38 | + public function getItems() { |
|
39 | 39 | return $this->content; |
40 | 40 | } |
41 | 41 | |
42 | - protected function getItemToAdd($item){ |
|
42 | + protected function getItemToAdd($item) { |
|
43 | 43 | $itemO=$item; |
44 | - if($this->createCondition($item)===true){ |
|
44 | + if ($this->createCondition($item)===true) { |
|
45 | 45 | $itemO=$this->createItem($item); |
46 | 46 | } |
47 | 47 | return $itemO; |
@@ -52,15 +52,15 @@ discard block |
||
52 | 52 | * @param HtmlDoubleElement|string $item |
53 | 53 | * @return \Ajax\common\html\HtmlDoubleElement |
54 | 54 | */ |
55 | - public function addItem($item){ |
|
55 | + public function addItem($item) { |
|
56 | 56 | $itemO=$this->getItemToAdd($item); |
57 | 57 | $this->addContent($itemO); |
58 | 58 | return $itemO; |
59 | 59 | } |
60 | 60 | |
61 | - public function insertItem($item,$position=0){ |
|
61 | + public function insertItem($item, $position=0) { |
|
62 | 62 | $itemO=$this->getItemToAdd($item); |
63 | - \array_splice( $this->content, $position, 0, array($itemO)); |
|
63 | + \array_splice($this->content, $position, 0, array($itemO)); |
|
64 | 64 | return $itemO; |
65 | 65 | } |
66 | 66 | |
@@ -83,11 +83,11 @@ discard block |
||
83 | 83 | return $this; |
84 | 84 | } |
85 | 85 | |
86 | - public function removeItem($index){ |
|
86 | + public function removeItem($index) { |
|
87 | 87 | return array_splice($this->content, $index, 1); |
88 | 88 | } |
89 | 89 | |
90 | - public function count(){ |
|
90 | + public function count() { |
|
91 | 91 | return \sizeof($this->content); |
92 | 92 | } |
93 | 93 | |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | return $this->addItem($function($object)); |
99 | 99 | } |
100 | 100 | |
101 | - public function apply($callBack){ |
|
102 | - foreach ($this->content as $item){ |
|
101 | + public function apply($callBack) { |
|
102 | + foreach ($this->content as $item) { |
|
103 | 103 | $callBack($item); |
104 | 104 | } |
105 | 105 | return $this; |
@@ -119,40 +119,40 @@ discard block |
||
119 | 119 | */ |
120 | 120 | protected abstract function createItem($value); |
121 | 121 | |
122 | - protected function createCondition($value){ |
|
122 | + protected function createCondition($value) { |
|
123 | 123 | return \is_object($value)===false; |
124 | 124 | } |
125 | 125 | |
126 | - protected function contentAs($tagName){ |
|
127 | - foreach ($this->content as $item){ |
|
126 | + protected function contentAs($tagName) { |
|
127 | + foreach ($this->content as $item) { |
|
128 | 128 | $item->setTagName($tagName); |
129 | 129 | } |
130 | 130 | return $this; |
131 | 131 | } |
132 | 132 | |
133 | - public function setProperties($properties){ |
|
133 | + public function setProperties($properties) { |
|
134 | 134 | $i=0; |
135 | - foreach ($properties as $k=>$v){ |
|
135 | + foreach ($properties as $k=>$v) { |
|
136 | 136 | $c=$this->content[$i++]; |
137 | - if(isset($c)) |
|
138 | - $c->setProperty($k,$v); |
|
137 | + if (isset($c)) |
|
138 | + $c->setProperty($k, $v); |
|
139 | 139 | else |
140 | 140 | return $this; |
141 | 141 | } |
142 | 142 | return $this; |
143 | 143 | } |
144 | 144 | |
145 | - public function setPropertyValues($property,$values){ |
|
145 | + public function setPropertyValues($property, $values) { |
|
146 | 146 | $i=0; |
147 | - if(\is_array($values)===false){ |
|
148 | - $values=\array_fill(0, $this->count(),$values); |
|
147 | + if (\is_array($values)===false) { |
|
148 | + $values=\array_fill(0, $this->count(), $values); |
|
149 | 149 | } |
150 | - foreach ($values as $value){ |
|
150 | + foreach ($values as $value) { |
|
151 | 151 | $c=$this->content[$i++]; |
152 | - if(isset($c)===true){ |
|
153 | - $c->setProperty($property,$value); |
|
152 | + if (isset($c)===true) { |
|
153 | + $c->setProperty($property, $value); |
|
154 | 154 | } |
155 | - else{ |
|
155 | + else { |
|
156 | 156 | return $this; |
157 | 157 | } |
158 | 158 | } |
@@ -15,33 +15,33 @@ discard block |
||
15 | 15 | |
16 | 16 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
17 | 17 | parent::__construct($identifier, "div", "ui buttons"); |
18 | - if ($asIcons === true) |
|
18 | + if ($asIcons===true) |
|
19 | 19 | $this->asIcons(); |
20 | 20 | $this->addElements($elements, $asIcons); |
21 | 21 | } |
22 | - protected function createItem($value){ |
|
23 | - return new HtmlButton("button-" . $this->identifier . "-" . \sizeof($this->content), $value); |
|
22 | + protected function createItem($value) { |
|
23 | + return new HtmlButton("button-".$this->identifier."-".\sizeof($this->content), $value); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | |
27 | 27 | public function addElement($element, $asIcon=false) { |
28 | 28 | $item=$this->addItem($element); |
29 | - if($asIcon) |
|
29 | + if ($asIcon) |
|
30 | 30 | $item->asIcon($element); |
31 | 31 | return $item; |
32 | 32 | } |
33 | 33 | |
34 | 34 | public function addElements($elements, $asIcons=false) { |
35 | - foreach ( $elements as $element ) { |
|
35 | + foreach ($elements as $element) { |
|
36 | 36 | $this->addElement($element, $asIcons); |
37 | 37 | } |
38 | 38 | return $this; |
39 | 39 | } |
40 | 40 | |
41 | 41 | public function insertOr($aferIndex=0, $or="or") { |
42 | - $orElement=new HtmlSemDoubleElement("or-" . $this->identifier, "div", "or"); |
|
42 | + $orElement=new HtmlSemDoubleElement("or-".$this->identifier, "div", "or"); |
|
43 | 43 | $orElement->setProperty("data-text", $or); |
44 | - array_splice($this->content, $aferIndex + 1, 0, array ($orElement )); |
|
44 | + array_splice($this->content, $aferIndex+1, 0, array($orElement)); |
|
45 | 45 | return $this; |
46 | 46 | } |
47 | 47 | |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | public function asIcons() { |
57 | - foreach ( $this->content as $item ) { |
|
58 | - if($item instanceof HtmlButton) |
|
57 | + foreach ($this->content as $item) { |
|
58 | + if ($item instanceof HtmlButton) |
|
59 | 59 | $item->asIcon($item->getContent()); |
60 | 60 | } |
61 | 61 | return $this->addToProperty("class", "icons"); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
89 | 89 | */ |
90 | 90 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
91 | - foreach ( $this->content as $element ) { |
|
91 | + foreach ($this->content as $element) { |
|
92 | 92 | $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
93 | 93 | } |
94 | 94 | return $this; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | public function addClasses($classes=array()) { |
102 | 102 | $i=0; |
103 | - foreach ( $this->content as $button ) { |
|
103 | + foreach ($this->content as $button) { |
|
104 | 104 | $button->addToProperty("class", $classes[$i++]); |
105 | 105 | } |
106 | 106 | return $this; |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * @return \Ajax\semantic\html\elements\HtmlDivider |
23 | 23 | */ |
24 | 24 | public function setVertical() { |
25 | - return $this->addToPropertyCtrl("class", "vertical", array ("vertical","horizontal" )); |
|
25 | + return $this->addToPropertyCtrl("class", "vertical", array("vertical", "horizontal")); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @return \Ajax\semantic\html\elements\HtmlDivider |
31 | 31 | */ |
32 | 32 | public function setHorizontal() { |
33 | - return $this->addToPropertyCtrl("class", "horizontal", array ("vertical","horizontal" )); |
|
33 | + return $this->addToPropertyCtrl("class", "horizontal", array("vertical", "horizontal")); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | return $this->addToProperty("class", "inverted"); |
66 | 66 | } |
67 | 67 | |
68 | - public function setIgnored(){ |
|
68 | + public function setIgnored() { |
|
69 | 69 | return $this->addToProperty("class", "ignored"); |
70 | 70 | } |
71 | 71 | } |
72 | 72 | \ No newline at end of file |
@@ -5,13 +5,13 @@ |
||
5 | 5 | |
6 | 6 | class HtmlShapeItem extends HtmlSemDoubleElement { |
7 | 7 | public function __construct($identifier, $content) { |
8 | - parent::__construct($identifier,"div","side",$content); |
|
8 | + parent::__construct($identifier, "div", "side", $content); |
|
9 | 9 | } |
10 | 10 | |
11 | - public function setActive($value=true){ |
|
12 | - if($value){ |
|
11 | + public function setActive($value=true) { |
|
12 | + if ($value) { |
|
13 | 13 | $this->addToPropertyCtrl("class", "active", ["active"]); |
14 | - }else{ |
|
14 | + } else { |
|
15 | 15 | $this->removePropertyValue("class", "active"); |
16 | 16 | } |
17 | 17 | return $this; |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | abstract class HtmlAbsractItem extends HtmlSemDoubleElement { |
13 | 13 | |
14 | - public function __construct($identifier, $baseClass,$content=NULL) { |
|
14 | + public function __construct($identifier, $baseClass, $content=NULL) { |
|
15 | 15 | parent::__construct($identifier, "div", $baseClass); |
16 | 16 | $this->content=array(); |
17 | 17 | $this->initContent($content); |
@@ -19,53 +19,53 @@ discard block |
||
19 | 19 | |
20 | 20 | protected abstract function initContent($content); |
21 | 21 | |
22 | - public function setIcon($icon){ |
|
22 | + public function setIcon($icon) { |
|
23 | 23 | $this->content["icon"]=new HtmlIcon("icon-".$this->identifier, $icon); |
24 | 24 | } |
25 | 25 | |
26 | - public function setImage($image){ |
|
26 | + public function setImage($image) { |
|
27 | 27 | $image=new HtmlImg("icon-".$this->identifier, $image); |
28 | 28 | $image->asAvatar(); |
29 | 29 | $this->content["image"]=$image; |
30 | 30 | } |
31 | 31 | |
32 | - private function createContent(){ |
|
33 | - $this->content["content"]=new HtmlSemDoubleElement("content-".$this->identifier,"div","content"); |
|
32 | + private function createContent() { |
|
33 | + $this->content["content"]=new HtmlSemDoubleElement("content-".$this->identifier, "div", "content"); |
|
34 | 34 | return $this->content["content"]; |
35 | 35 | } |
36 | 36 | |
37 | - public function setTitle($title,$description=NULL,$baseClass="title"){ |
|
38 | - $title=new HtmlSemDoubleElement("","div",$baseClass,$title); |
|
39 | - if(\array_key_exists("content", $this->content)===false){ |
|
37 | + public function setTitle($title, $description=NULL, $baseClass="title") { |
|
38 | + $title=new HtmlSemDoubleElement("", "div", $baseClass, $title); |
|
39 | + if (\array_key_exists("content", $this->content)===false) { |
|
40 | 40 | $this->createContent(); |
41 | 41 | } |
42 | 42 | $this->content["content"]->addContent($title); |
43 | - if(isset($description)){ |
|
44 | - $description=new HtmlSemDoubleElement("","div","description",$description); |
|
43 | + if (isset($description)) { |
|
44 | + $description=new HtmlSemDoubleElement("", "div", "description", $description); |
|
45 | 45 | $this->content["content"]->addContent($description); |
46 | 46 | } |
47 | 47 | return $this; |
48 | 48 | } |
49 | 49 | |
50 | - public function getPart($partName="header"){ |
|
51 | - $content=\array_merge($this->content["content"]->getContent(),array(@$this->content["icon"],@$this->content["image"])); |
|
50 | + public function getPart($partName="header") { |
|
51 | + $content=\array_merge($this->content["content"]->getContent(), array(@$this->content["icon"], @$this->content["image"])); |
|
52 | 52 | return $this->getElementByPropertyValue("class", $partName, $content); |
53 | 53 | } |
54 | 54 | |
55 | - public function setActive($value=true){ |
|
56 | - if($value){ |
|
55 | + public function setActive($value=true) { |
|
56 | + if ($value) { |
|
57 | 57 | $this->setTagName("div"); |
58 | 58 | $this->removeProperty("href"); |
59 | 59 | $this->addToPropertyCtrl("class", "active", array("active")); |
60 | - }else{ |
|
60 | + } else { |
|
61 | 61 | $this->removePropertyValue("class", "active"); |
62 | 62 | } |
63 | 63 | return $this; |
64 | 64 | } |
65 | 65 | |
66 | - public function asLink($href=NULL,$part=NULL){ |
|
66 | + public function asLink($href=NULL, $part=NULL) { |
|
67 | 67 | $this->setTagName("a"); |
68 | - if(isset($href)) |
|
68 | + if (isset($href)) |
|
69 | 69 | $this->setProperty("href", $href); |
70 | 70 | return $this; |
71 | 71 | } |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile() |
78 | 78 | */ |
79 | 79 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
80 | - if(\is_array($this->content)) |
|
81 | - $this->content=JArray::sortAssociative($this->content, [ "icon","image","content" ]); |
|
80 | + if (\is_array($this->content)) |
|
81 | + $this->content=JArray::sortAssociative($this->content, ["icon", "image", "content"]); |
|
82 | 82 | return parent::compile($js, $view); |
83 | 83 | } |
84 | 84 | } |
85 | 85 | \ No newline at end of file |
@@ -10,8 +10,8 @@ discard block |
||
10 | 10 | * @version 1.001 |
11 | 11 | */ |
12 | 12 | abstract class BaseComponent { |
13 | - public $jquery_code_for_compile=array (); |
|
14 | - protected $params=array (); |
|
13 | + public $jquery_code_for_compile=array(); |
|
14 | + protected $params=array(); |
|
15 | 15 | |
16 | 16 | /** |
17 | 17 | * |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | public function setParams($params) { |
71 | - foreach ( $params as $k => $v ) { |
|
71 | + foreach ($params as $k => $v) { |
|
72 | 72 | $method="set".ucfirst($k); |
73 | 73 | if (method_exists($this, $method)) |
74 | 74 | $this->$method($v); |
@@ -81,8 +81,8 @@ discard block |
||
81 | 81 | return $this; |
82 | 82 | } |
83 | 83 | |
84 | - public function addParams($params){ |
|
85 | - foreach ($params as $k=>$v){ |
|
84 | + public function addParams($params) { |
|
85 | + foreach ($params as $k=>$v) { |
|
86 | 86 | $this->setParam($k, $v); |
87 | 87 | } |
88 | 88 | return $this; |
@@ -16,10 +16,10 @@ discard block |
||
16 | 16 | abstract class BaseHtml extends BaseWidget { |
17 | 17 | protected $_template; |
18 | 18 | protected $tagName; |
19 | - protected $properties=array (); |
|
20 | - protected $_events=array (); |
|
21 | - protected $_wrapBefore=array (); |
|
22 | - protected $_wrapAfter=array (); |
|
19 | + protected $properties=array(); |
|
20 | + protected $_events=array(); |
|
21 | + protected $_wrapBefore=array(); |
|
22 | + protected $_wrapAfter=array(); |
|
23 | 23 | protected $_bsComponent; |
24 | 24 | |
25 | 25 | public function getBsComponent() { |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | protected function getTemplate(JsUtils $js=NULL) { |
35 | - return PropertyWrapper::wrap($this->_wrapBefore, $js) . $this->_template . PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
35 | + return PropertyWrapper::wrap($this->_wrapBefore, $js).$this->_template.PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | public function getProperties() { |
@@ -56,13 +56,13 @@ discard block |
||
56 | 56 | |
57 | 57 | public function addToProperty($name, $value, $separator=" ") { |
58 | 58 | if (\is_array($value)) { |
59 | - foreach ( $value as $v ) { |
|
59 | + foreach ($value as $v) { |
|
60 | 60 | $this->addToProperty($name, $v, $separator); |
61 | 61 | } |
62 | - } else if ($value !== "" && $this->propertyContains($name, $value) === false) { |
|
62 | + } else if ($value!=="" && $this->propertyContains($name, $value)===false) { |
|
63 | 63 | $v=@$this->properties[$name]; |
64 | - if (isset($v) && $v !== "") |
|
65 | - $v=$v . $separator . $value; |
|
64 | + if (isset($v) && $v!=="") |
|
65 | + $v=$v.$separator.$value; |
|
66 | 66 | else |
67 | 67 | $v=$value; |
68 | 68 | |
@@ -78,19 +78,19 @@ discard block |
||
78 | 78 | |
79 | 79 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
80 | 80 | $result=$this->getTemplate($js); |
81 | - foreach ( $this as $key => $value ) { |
|
82 | - if (JString::startswith($key, "_") === false && $key !== "events") { |
|
81 | + foreach ($this as $key => $value) { |
|
82 | + if (JString::startswith($key, "_")===false && $key!=="events") { |
|
83 | 83 | if (is_array($value)) { |
84 | 84 | $v=PropertyWrapper::wrap($value, $js); |
85 | 85 | } else { |
86 | 86 | $v=$value; |
87 | 87 | } |
88 | - $result=str_ireplace("%" . $key . "%", $v, $result); |
|
88 | + $result=str_ireplace("%".$key."%", $v, $result); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | if (isset($js)===true) { |
92 | 92 | $this->run($js); |
93 | - if (isset($view) === true) { |
|
93 | + if (isset($view)===true) { |
|
94 | 94 | $js->addViewElement($this->identifier, $result, $view); |
95 | 95 | } |
96 | 96 | } |
@@ -99,12 +99,12 @@ discard block |
||
99 | 99 | |
100 | 100 | protected function ctrl($name, $value, $typeCtrl) { |
101 | 101 | if (is_array($typeCtrl)) { |
102 | - if (array_search($value, $typeCtrl) === false) { |
|
103 | - throw new \Exception("La valeur passée `" . $value . "` à la propriété `" . $name . "` ne fait pas partie des valeurs possibles : {" . implode(",", $typeCtrl) . "}"); |
|
102 | + if (array_search($value, $typeCtrl)===false) { |
|
103 | + throw new \Exception("La valeur passée `".$value."` à la propriété `".$name."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
104 | 104 | } |
105 | 105 | } else { |
106 | 106 | if (!$typeCtrl($value)) { |
107 | - throw new \Exception("La fonction " . $typeCtrl . " a retourné faux pour l'affectation de la propriété " . $name); |
|
107 | + throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$name); |
|
108 | 108 | } |
109 | 109 | } |
110 | 110 | return true; |
@@ -119,13 +119,13 @@ discard block |
||
119 | 119 | } |
120 | 120 | |
121 | 121 | protected function setPropertyCtrl($name, $value, $typeCtrl) { |
122 | - if ($this->ctrl($name, $value, $typeCtrl) === true) |
|
122 | + if ($this->ctrl($name, $value, $typeCtrl)===true) |
|
123 | 123 | return $this->setProperty($name, $value); |
124 | 124 | return $this; |
125 | 125 | } |
126 | 126 | |
127 | 127 | protected function setMemberCtrl(&$name, $value, $typeCtrl) { |
128 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
128 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
129 | 129 | return $name=$value; |
130 | 130 | } |
131 | 131 | return $this; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | protected function addToMemberUnique(&$name, $value, $typeCtrl, $separator=" ") { |
135 | 135 | if (is_array($typeCtrl)) { |
136 | 136 | $this->removeOldValues($name, $typeCtrl); |
137 | - $name.=$separator . $value; |
|
137 | + $name.=$separator.$value; |
|
138 | 138 | } |
139 | 139 | return $this; |
140 | 140 | } |
@@ -156,17 +156,17 @@ discard block |
||
156 | 156 | } |
157 | 157 | |
158 | 158 | protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") { |
159 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
159 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
160 | 160 | if (is_array($typeCtrl)) { |
161 | 161 | $this->removeOldValues($name, $typeCtrl); |
162 | 162 | } |
163 | - $name.=$separator . $value; |
|
163 | + $name.=$separator.$value; |
|
164 | 164 | } |
165 | 165 | return $this; |
166 | 166 | } |
167 | 167 | |
168 | 168 | protected function addToMember(&$name, $value, $separator=" ") { |
169 | - $name=str_ireplace($value, "", $name) . $separator . $value; |
|
169 | + $name=str_ireplace($value, "", $name).$separator.$value; |
|
170 | 170 | return $this; |
171 | 171 | } |
172 | 172 | |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | } |
185 | 185 | |
186 | 186 | public function addToPropertyCtrlCheck($name, $value, $typeCtrl) { |
187 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
187 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
188 | 188 | return $this->addToProperty($name, $value); |
189 | 189 | } |
190 | 190 | return $this; |
@@ -212,28 +212,28 @@ discard block |
||
212 | 212 | } |
213 | 213 | |
214 | 214 | public function fromArray($array) { |
215 | - foreach ( $this as $key => $value ) { |
|
215 | + foreach ($this as $key => $value) { |
|
216 | 216 | if (array_key_exists($key, $array) && !JString::startswith($key, "_")) { |
217 | - $setter="set" . ucfirst($key); |
|
217 | + $setter="set".ucfirst($key); |
|
218 | 218 | $this->$setter($array[$key]); |
219 | 219 | unset($array[$key]); |
220 | 220 | } |
221 | 221 | } |
222 | - foreach ( $array as $key => $value ) { |
|
222 | + foreach ($array as $key => $value) { |
|
223 | 223 | if (method_exists($this, $key)) { |
224 | 224 | try { |
225 | 225 | $this->$key($value); |
226 | 226 | unset($array[$key]); |
227 | - } catch ( \Exception $e ) { |
|
227 | + }catch (\Exception $e) { |
|
228 | 228 | // Nothing to do |
229 | 229 | } |
230 | 230 | } else { |
231 | - $setter="set" . ucfirst($key); |
|
231 | + $setter="set".ucfirst($key); |
|
232 | 232 | if (method_exists($this, $setter)) { |
233 | 233 | try { |
234 | 234 | $this->$setter($value); |
235 | 235 | unset($array[$key]); |
236 | - } catch ( \Exception $e ) { |
|
236 | + }catch (\Exception $e) { |
|
237 | 237 | // Nothing to do |
238 | 238 | } |
239 | 239 | } |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | |
245 | 245 | public function fromDatabaseObjects($objects, $function) { |
246 | 246 | if (isset($objects)) { |
247 | - foreach ( $objects as $object ) { |
|
247 | + foreach ($objects as $object) { |
|
248 | 248 | $this->fromDatabaseObject($object, $function); |
249 | 249 | } |
250 | 250 | } |
@@ -264,11 +264,11 @@ discard block |
||
264 | 264 | } |
265 | 265 | |
266 | 266 | public function addEvent($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
267 | - if ($stopPropagation === true) { |
|
268 | - $jsCode="event.stopPropagation();" . $jsCode; |
|
267 | + if ($stopPropagation===true) { |
|
268 | + $jsCode="event.stopPropagation();".$jsCode; |
|
269 | 269 | } |
270 | - if ($preventDefault === true) { |
|
271 | - $jsCode="event.preventDefault();" . $jsCode; |
|
270 | + if ($preventDefault===true) { |
|
271 | + $jsCode="event.preventDefault();".$jsCode; |
|
272 | 272 | } |
273 | 273 | return $this->_addEvent($event, $jsCode); |
274 | 274 | } |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | if (is_array($this->_events[$event])) { |
279 | 279 | $this->_events[$event][]=$jsCode; |
280 | 280 | } else { |
281 | - $this->_events[$event]=array ($this->_events[$event],$jsCode ); |
|
281 | + $this->_events[$event]=array($this->_events[$event], $jsCode); |
|
282 | 282 | } |
283 | 283 | } else { |
284 | 284 | $this->_events[$event]=$jsCode; |
@@ -298,35 +298,35 @@ discard block |
||
298 | 298 | return $this->onClick($jsCode); |
299 | 299 | } |
300 | 300 | |
301 | - public function onCreate($jsCode){ |
|
302 | - if(isset($this->_events["_create"])){ |
|
301 | + public function onCreate($jsCode) { |
|
302 | + if (isset($this->_events["_create"])) { |
|
303 | 303 | $this->_events["_create"][]=$jsCode; |
304 | - }else{ |
|
304 | + } else { |
|
305 | 305 | $this->_events["_create"]=[$jsCode]; |
306 | 306 | } |
307 | 307 | return $this; |
308 | 308 | } |
309 | 309 | |
310 | 310 | public function addEventsOnRun(JsUtils $js) { |
311 | - if(isset($this->_events["_create"])){ |
|
311 | + if (isset($this->_events["_create"])) { |
|
312 | 312 | $create=$this->_events["_create"]; |
313 | - if(\is_array($create)){ |
|
313 | + if (\is_array($create)) { |
|
314 | 314 | $create=\implode("", $create); |
315 | 315 | } |
316 | - if($create!=="") |
|
317 | - $js->exec($create,true); |
|
316 | + if ($create!=="") |
|
317 | + $js->exec($create, true); |
|
318 | 318 | unset($this->_events["_create"]); |
319 | 319 | } |
320 | 320 | if (isset($this->_bsComponent)) { |
321 | - foreach ( $this->_events as $event => $jsCode ) { |
|
321 | + foreach ($this->_events as $event => $jsCode) { |
|
322 | 322 | $code=$jsCode; |
323 | 323 | if (is_array($jsCode)) { |
324 | 324 | $code=""; |
325 | - foreach ( $jsCode as $jsC ) { |
|
325 | + foreach ($jsCode as $jsC) { |
|
326 | 326 | if ($jsC instanceof AjaxCall) { |
327 | - $code.="\n" . $jsC->compile($js); |
|
327 | + $code.="\n".$jsC->compile($js); |
|
328 | 328 | } else { |
329 | - $code.="\n" . $jsC; |
|
329 | + $code.="\n".$jsC; |
|
330 | 330 | } |
331 | 331 | } |
332 | 332 | } elseif ($jsCode instanceof AjaxCall) { |
@@ -334,12 +334,12 @@ discard block |
||
334 | 334 | } |
335 | 335 | $this->_bsComponent->addEvent($event, $code); |
336 | 336 | } |
337 | - $this->_events=array (); |
|
337 | + $this->_events=array(); |
|
338 | 338 | } |
339 | 339 | } |
340 | 340 | |
341 | 341 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
342 | - $params=array ("url" => $url,"responseElement" => $responseElement ); |
|
342 | + $params=array("url" => $url, "responseElement" => $responseElement); |
|
343 | 343 | $params=array_merge($params, $parameters); |
344 | 344 | $this->_addEvent($event, new AjaxCall($operation, $params)); |
345 | 345 | return $this; |
@@ -375,33 +375,33 @@ discard block |
||
375 | 375 | if (is_array($elements)) { |
376 | 376 | $flag=false; |
377 | 377 | $index=0; |
378 | - while ( !$flag && $index < sizeof($elements) ) { |
|
378 | + while (!$flag && $index<sizeof($elements)) { |
|
379 | 379 | if ($elements[$index] instanceof BaseHtml) |
380 | - $flag=($elements[$index]->getIdentifier() === $identifier); |
|
380 | + $flag=($elements[$index]->getIdentifier()===$identifier); |
|
381 | 381 | $index++; |
382 | 382 | } |
383 | - if ($flag === true) |
|
384 | - return $elements[$index - 1]; |
|
383 | + if ($flag===true) |
|
384 | + return $elements[$index-1]; |
|
385 | 385 | } elseif ($elements instanceof BaseHtml) { |
386 | - if ($elements->getIdentifier() === $identifier) |
|
386 | + if ($elements->getIdentifier()===$identifier) |
|
387 | 387 | return $elements; |
388 | 388 | } |
389 | 389 | return null; |
390 | 390 | } |
391 | 391 | |
392 | - protected function getElementByPropertyValue($propertyName,$value, $elements) { |
|
392 | + protected function getElementByPropertyValue($propertyName, $value, $elements) { |
|
393 | 393 | if (is_array($elements)) { |
394 | 394 | $flag=false; |
395 | 395 | $index=0; |
396 | - while ( !$flag && $index < sizeof($elements) ) { |
|
396 | + while (!$flag && $index<sizeof($elements)) { |
|
397 | 397 | if ($elements[$index] instanceof BaseHtml) |
398 | - $flag=($elements[$index]->propertyContains($propertyName, $value) === true); |
|
398 | + $flag=($elements[$index]->propertyContains($propertyName, $value)===true); |
|
399 | 399 | $index++; |
400 | 400 | } |
401 | - if ($flag === true) |
|
402 | - return $elements[$index - 1]; |
|
401 | + if ($flag===true) |
|
402 | + return $elements[$index-1]; |
|
403 | 403 | } elseif ($elements instanceof BaseHtml) { |
404 | - if ($elements->propertyContains($propertyName, $value) === true) |
|
404 | + if ($elements->propertyContains($propertyName, $value)===true) |
|
405 | 405 | return $elements; |
406 | 406 | } |
407 | 407 | return null; |
@@ -423,14 +423,14 @@ discard block |
||
423 | 423 | if (is_array($value)) { |
424 | 424 | $value=implode(",", $value); |
425 | 425 | } |
426 | - if (strrpos($value, 'this') === false && strrpos($value, 'event') === false) { |
|
427 | - $value='"' . $value . '"'; |
|
426 | + if (strrpos($value, 'this')===false && strrpos($value, 'event')===false) { |
|
427 | + $value='"'.$value.'"'; |
|
428 | 428 | } |
429 | 429 | return $value; |
430 | 430 | } |
431 | 431 | |
432 | 432 | public function jsDoJquery($jqueryCall, $param="") { |
433 | - return "$('#" . $this->identifier . "')." . $jqueryCall . "(" . $this->_prep_value($param) . ");"; |
|
433 | + return "$('#".$this->identifier."').".$jqueryCall."(".$this->_prep_value($param).");"; |
|
434 | 434 | } |
435 | 435 | |
436 | 436 | public function executeOnRun($jsCode) { |
@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | * @property string $identifier |
13 | 13 | */ |
14 | 14 | trait BaseTrait { |
15 | - protected $_variations=[ ]; |
|
16 | - protected $_states=[ ]; |
|
15 | + protected $_variations=[]; |
|
16 | + protected $_states=[]; |
|
17 | 17 | protected $_baseClass; |
18 | 18 | |
19 | 19 | protected abstract function setPropertyCtrl($name, $value, $typeCtrl); |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $this->setProperty("class", $this->_baseClass); |
44 | 44 | if (\is_string($variations)) |
45 | 45 | $variations=\explode(" ", $variations); |
46 | - foreach ( $variations as $variation ) { |
|
46 | + foreach ($variations as $variation) { |
|
47 | 47 | $this->addVariation($variation); |
48 | 48 | } |
49 | 49 | return $this; |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | public function addVariations($variations=array()) { |
58 | 58 | if (\is_string($variations)) |
59 | 59 | $variations=\explode(" ", $variations); |
60 | - foreach ( $variations as $variation ) { |
|
60 | + foreach ($variations as $variation) { |
|
61 | 61 | $this->addVariation($variation); |
62 | 62 | } |
63 | 63 | return $this; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | public function addStates($states=array()) { |
67 | 67 | if (\is_string($states)) |
68 | 68 | $states=\explode(" ", $states); |
69 | - foreach ( $states as $state ) { |
|
69 | + foreach ($states as $state) { |
|
70 | 70 | $this->addState($state); |
71 | 71 | } |
72 | 72 | return $this; |
@@ -76,17 +76,17 @@ discard block |
||
76 | 76 | $this->setProperty("class", $this->_baseClass); |
77 | 77 | if (\is_string($states)) |
78 | 78 | $states=\explode(" ", $states); |
79 | - foreach ( $states as $state ) { |
|
79 | + foreach ($states as $state) { |
|
80 | 80 | $this->addState($state); |
81 | 81 | } |
82 | 82 | return $this; |
83 | 83 | } |
84 | 84 | |
85 | 85 | public function addIcon($icon, $before=true) { |
86 | - return $this->addContent(new HtmlIcon("icon-" . $this->identifier, $icon), $before); |
|
86 | + return $this->addContent(new HtmlIcon("icon-".$this->identifier, $icon), $before); |
|
87 | 87 | } |
88 | 88 | |
89 | - public function addSticky($context="body"){ |
|
89 | + public function addSticky($context="body") { |
|
90 | 90 | $this->onCreate("$('#".$this->identifier."').sticky({ context: '".$context."'});"); |
91 | 91 | return $this; |
92 | 92 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * |
131 | 131 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
132 | 132 | */ |
133 | - public function asHeader(){ |
|
133 | + public function asHeader() { |
|
134 | 134 | return $this->addToProperty("class", "header"); |
135 | 135 | } |
136 | 136 | |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * show it is currently the active user selection |
139 | 139 | * @return \Ajax\semantic\html\base\HtmlSemDoubleElement |
140 | 140 | */ |
141 | - public function setActive($value=true){ |
|
141 | + public function setActive($value=true) { |
|
142 | 142 | return $this->addToProperty("class", "active"); |
143 | 143 | } |
144 | 144 | |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | } |
155 | 155 | |
156 | 156 | public function setFloated($direction="right") { |
157 | - return $this->addToPropertyCtrl("class", $direction . " floated", Direction::getConstantValues("floated")); |
|
157 | + return $this->addToPropertyCtrl("class", $direction." floated", Direction::getConstantValues("floated")); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | public function floatRight() { |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | use BaseTrait; |
22 | 22 | protected $_popup=NULL; |
23 | 23 | protected $_dimmer=NULL; |
24 | - protected $_params=array (); |
|
24 | + protected $_params=array(); |
|
25 | 25 | |
26 | 26 | |
27 | 27 | public function __construct($identifier, $tagName="p", $baseClass="ui", $content=NULL) { |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | public function addDimmer($params=array(), $content=NULL) { |
54 | - $dimmer=new HtmlDimmer("dimmer-" . $this->identifier, $content); |
|
54 | + $dimmer=new HtmlDimmer("dimmer-".$this->identifier, $content); |
|
55 | 55 | $dimmer->setParams($params); |
56 | 56 | $dimmer->setContainer($this); |
57 | 57 | $this->addContent($dimmer); |
@@ -60,20 +60,20 @@ discard block |
||
60 | 60 | |
61 | 61 | public function addLabel($label, $before=false, $icon=NULL) { |
62 | 62 | $labelO=$label; |
63 | - if (\is_object($label) === false) { |
|
64 | - $labelO=new HtmlLabel("label-" . $this->identifier, $label); |
|
63 | + if (\is_object($label)===false) { |
|
64 | + $labelO=new HtmlLabel("label-".$this->identifier, $label); |
|
65 | 65 | if (isset($icon)) |
66 | 66 | $labelO->addIcon($icon); |
67 | 67 | } else { |
68 | - $labelO->addToPropertyCtrl("class", "label", array ("label" )); |
|
68 | + $labelO->addToPropertyCtrl("class", "label", array("label")); |
|
69 | 69 | } |
70 | 70 | $this->addContent($labelO, $before); |
71 | 71 | return $labelO; |
72 | 72 | } |
73 | 73 | |
74 | - public function attachLabel($label,$side,$direction=Direction::NONE,$icon=NULL){ |
|
75 | - $label=$this->addLabel($label,true,$icon); |
|
76 | - $label->setAttached($side,$direction); |
|
74 | + public function attachLabel($label, $side, $direction=Direction::NONE, $icon=NULL) { |
|
75 | + $label=$this->addLabel($label, true, $icon); |
|
76 | + $label->setAttached($side, $direction); |
|
77 | 77 | return $this; |
78 | 78 | } |
79 | 79 | |
@@ -89,9 +89,9 @@ discard block |
||
89 | 89 | |
90 | 90 | public function jsShowDimmer($show=true) { |
91 | 91 | $status="hide"; |
92 | - if ($show === true) |
|
92 | + if ($show===true) |
|
93 | 93 | $status="show"; |
94 | - return '$("#.' . $this->identifier . ').dimmer("' . $status . '");'; |
|
94 | + return '$("#.'.$this->identifier.').dimmer("'.$status.'");'; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | } |
102 | 102 | |
103 | 103 | public function run(JsUtils $js) { |
104 | - $this->_bsComponent=$js->semantic()->generic("#" . $this->identifier); |
|
104 | + $this->_bsComponent=$js->semantic()->generic("#".$this->identifier); |
|
105 | 105 | parent::run($js); |
106 | 106 | $this->addEventsOnRun($js); |
107 | 107 | if (isset($this->_popup)) { |