@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | } |
54 | 54 | |
55 | 55 | public function setFocusable($value=true){ |
56 | - if($value===true) |
|
57 | - $this->setProperty("tabindex", "0"); |
|
58 | - else{ |
|
56 | + if($value===true) { |
|
57 | + $this->setProperty("tabindex", "0"); |
|
58 | + } else{ |
|
59 | 59 | $this->removeProperty("tabindex"); |
60 | 60 | } |
61 | 61 | return $this; |
@@ -172,8 +172,9 @@ discard block |
||
172 | 172 | } |
173 | 173 | |
174 | 174 | public static function getSocial($identifier,$social,$value=NULL){ |
175 | - if($value===NULL) |
|
176 | - $value=\ucfirst($social); |
|
175 | + if($value===NULL) { |
|
176 | + $value=\ucfirst($social); |
|
177 | + } |
|
177 | 178 | $return=new HtmlButton($identifier,$value); |
178 | 179 | $return->addIcon($social); |
179 | 180 | return $return->addToPropertyCtrl("class", $social, Social::getConstants()); |
@@ -34,8 +34,9 @@ |
||
34 | 34 | * @see BaseHtml::run() |
35 | 35 | */ |
36 | 36 | public function run(JsUtils $js) { |
37 | - if(isset($this->_bsComponent)===false) |
|
38 | - $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
37 | + if(isset($this->_bsComponent)===false) { |
|
38 | + $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
39 | + } |
|
39 | 40 | $this->addEventsOnRun($js); |
40 | 41 | return $this->_bsComponent; |
41 | 42 | } |
@@ -31,8 +31,9 @@ discard block |
||
31 | 31 | protected function createTitleElement(){ |
32 | 32 | $element=new HtmlSemDoubleElement("title-".$this->identifier,"div","title"); |
33 | 33 | $element->setContent(array(new HtmlIcon("", $this->_icon),$this->_title)); |
34 | - if($this->_active===true) |
|
35 | - $element->addToProperty("class", "active"); |
|
34 | + if($this->_active===true) { |
|
35 | + $element->addToProperty("class", "active"); |
|
36 | + } |
|
36 | 37 | return $element; |
37 | 38 | } |
38 | 39 | |
@@ -43,10 +44,11 @@ discard block |
||
43 | 44 | |
44 | 45 | public function setActive($value=true){ |
45 | 46 | $this->_active=$value; |
46 | - if($value===true) |
|
47 | - $this->addToPropertyCtrl("class", "active", array("active")); |
|
48 | - else |
|
49 | - $this->removePropertyValue("class", "active"); |
|
47 | + if($value===true) { |
|
48 | + $this->addToPropertyCtrl("class", "active", array("active")); |
|
49 | + } else { |
|
50 | + $this->removePropertyValue("class", "active"); |
|
51 | + } |
|
50 | 52 | return $this; |
51 | 53 | } |
52 | 54 | } |
53 | 55 | \ No newline at end of file |
@@ -8,8 +8,9 @@ discard block |
||
8 | 8 | public function __construct($identifier, $field,$label=NULL) { |
9 | 9 | parent::__construct($identifier, "div","ui field"); |
10 | 10 | $this->content=array(); |
11 | - if(isset($label)) |
|
12 | - $this->setLabel($label); |
|
11 | + if(isset($label)) { |
|
12 | + $this->setLabel($label); |
|
13 | + } |
|
13 | 14 | $this->setField($field); |
14 | 15 | } |
15 | 16 | |
@@ -28,8 +29,9 @@ discard block |
||
28 | 29 | } |
29 | 30 | |
30 | 31 | public function getLabel(){ |
31 | - if(\array_key_exists("label", $this->content)) |
|
32 | - return $this->content["label"]; |
|
32 | + if(\array_key_exists("label", $this->content)) { |
|
33 | + return $this->content["label"]; |
|
34 | + } |
|
33 | 35 | } |
34 | 36 | |
35 | 37 | public function getField(){ |
@@ -50,9 +50,9 @@ discard block |
||
50 | 50 | $item=$itemO; |
51 | 51 | } |
52 | 52 | $item=parent::addItem($item); |
53 | - if(!$item instanceof HtmlMenu) |
|
54 | - $item->addToPropertyCtrl("class", "item",array("item")); |
|
55 | - else{ |
|
53 | + if(!$item instanceof HtmlMenu) { |
|
54 | + $item->addToPropertyCtrl("class", "item",array("item")); |
|
55 | + } else{ |
|
56 | 56 | $this->setSecondary(); |
57 | 57 | } |
58 | 58 | } |
@@ -102,8 +102,9 @@ discard block |
||
102 | 102 | |
103 | 103 | public function asTab($vertical=false){ |
104 | 104 | $this->apply(function(HtmlDoubleElement &$item){$item->setTagName("a");}); |
105 | - if($vertical===true) |
|
106 | - $this->setVertical(); |
|
105 | + if($vertical===true) { |
|
106 | + $this->setVertical(); |
|
107 | + } |
|
107 | 108 | return $this->addToProperty("class", "tabular"); |
108 | 109 | } |
109 | 110 | |
@@ -129,9 +130,10 @@ discard block |
||
129 | 130 | */ |
130 | 131 | public function fromDatabaseObject($object, $function) { |
131 | 132 | $return=$function($object); |
132 | - if(\is_array($return)) |
|
133 | - $this->addItems($return); |
|
134 | - else |
|
135 | - $this->addItem($return); |
|
133 | + if(\is_array($return)) { |
|
134 | + $this->addItems($return); |
|
135 | + } else { |
|
136 | + $this->addItem($return); |
|
137 | + } |
|
136 | 138 | } |
137 | 139 | } |
138 | 140 | \ No newline at end of file |
@@ -34,8 +34,9 @@ |
||
34 | 34 | * @see BaseHtml::run() |
35 | 35 | */ |
36 | 36 | public function run(JsUtils $js) { |
37 | - if(isset($this->_bsComponent)===false) |
|
38 | - $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
37 | + if(isset($this->_bsComponent)===false) { |
|
38 | + $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
39 | + } |
|
39 | 40 | $this->addEventsOnRun($js); |
40 | 41 | return $this->_bsComponent; |
41 | 42 | } |
@@ -16,8 +16,9 @@ discard block |
||
16 | 16 | } |
17 | 17 | |
18 | 18 | public function setValue($value) { |
19 | - if(isset($value)) |
|
20 | - $this->setProperty("value", $value); |
|
19 | + if(isset($value)) { |
|
20 | + $this->setProperty("value", $value); |
|
21 | + } |
|
21 | 22 | return $this; |
22 | 23 | } |
23 | 24 | |
@@ -26,8 +27,9 @@ discard block |
||
26 | 27 | } |
27 | 28 | |
28 | 29 | public function setPlaceholder($value){ |
29 | - if(JString::isNotNull($value)) |
|
30 | - $this->setProperty("placeholder", $value); |
|
30 | + if(JString::isNotNull($value)) { |
|
31 | + $this->setProperty("placeholder", $value); |
|
32 | + } |
|
31 | 33 | return $this; |
32 | 34 | } |
33 | 35 | } |
34 | 36 | \ No newline at end of file |
@@ -22,8 +22,9 @@ |
||
22 | 22 | if($this->_equalWidth){ |
23 | 23 | $count=$this->count(); |
24 | 24 | $this->setClass( Wide::getConstants()["W".$count]." fields"); |
25 | - }else |
|
26 | - $this->setClass("fields"); |
|
25 | + } else { |
|
26 | + $this->setClass("fields"); |
|
27 | + } |
|
27 | 28 | return parent::compile($js,$view); |
28 | 29 | } |
29 | 30 |
@@ -25,8 +25,9 @@ discard block |
||
25 | 25 | |
26 | 26 | public function addHeader($title,$niveau=1,$dividing=true){ |
27 | 27 | $header=new HtmlHeader("",$niveau,$title); |
28 | - if($dividing) |
|
29 | - $header->setDividing(); |
|
28 | + if($dividing) { |
|
29 | + $header->setDividing(); |
|
30 | + } |
|
30 | 31 | return $this->addItem($header); |
31 | 32 | } |
32 | 33 | |
@@ -55,7 +56,7 @@ discard block |
||
55 | 56 | public function getField($index){ |
56 | 57 | if(\is_string($index)){ |
57 | 58 | $field=$this->getElementById($index, $this->_fields); |
58 | - }else{ |
|
59 | + } else{ |
|
59 | 60 | $field=$this->_fields[$index]; |
60 | 61 | } |
61 | 62 | return $field; |