@@ -74,8 +74,9 @@ |
||
74 | 74 | protected function setParamCtrl($key, $value, $typeCtrl) { |
75 | 75 | if (!$typeCtrl($value)) { |
76 | 76 | throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$key." à la position"); |
77 | - } else |
|
78 | - $this->setParam($key, $value); |
|
77 | + } else { |
|
78 | + $this->setParam($key, $value); |
|
79 | + } |
|
79 | 80 | } |
80 | 81 | |
81 | 82 | /* |
@@ -49,9 +49,9 @@ |
||
49 | 49 | * @return $this |
50 | 50 | */ |
51 | 51 | public function setAnimate($value) { |
52 | - if ($value instanceof Animation) |
|
53 | - $value=$value->getParams(); |
|
54 | - else if (is_string($value)) { |
|
52 | + if ($value instanceof Animation) { |
|
53 | + $value=$value->getParams(); |
|
54 | + } else if (is_string($value)) { |
|
55 | 55 | $animation=new Animation(); |
56 | 56 | $animation->setEasing($value); |
57 | 57 | } |
@@ -15,8 +15,9 @@ |
||
15 | 15 | class DialogButton extends BaseComponent { |
16 | 16 | |
17 | 17 | private function addFunction($jsCode) { |
18 | - if (!Text::startsWith($jsCode, "function")) |
|
19 | - $jsCode="%function(){" . $jsCode . "}%"; |
|
18 | + if (!Text::startsWith($jsCode, "function")) { |
|
19 | + $jsCode="%function(){" . $jsCode . "}%"; |
|
20 | + } |
|
20 | 21 | return $jsCode; |
21 | 22 | } |
22 | 23 |
@@ -81,8 +81,9 @@ |
||
81 | 81 | $vars=get_object_vars($this); |
82 | 82 | $result=array (); |
83 | 83 | foreach ( $vars as $k => $v ) { |
84 | - if (isset($v)) |
|
85 | - $result[$k]=$v; |
|
84 | + if (isset($v)) { |
|
85 | + $result[$k]=$v; |
|
86 | + } |
|
86 | 87 | } |
87 | 88 | return $result; |
88 | 89 | } |
@@ -24,8 +24,9 @@ |
||
24 | 24 | $result=array (); |
25 | 25 | foreach ( $this->categories as $category ) { |
26 | 26 | $r=$category->search($query, $field); |
27 | - if ($r !== false) |
|
28 | - $result[]=$r; |
|
27 | + if ($r !== false) { |
|
28 | + $result[]=$r; |
|
29 | + } |
|
29 | 30 | } |
30 | 31 | $this->categories=$result; |
31 | 32 | return $this; |
@@ -38,8 +38,9 @@ discard block |
||
38 | 38 | foreach ( $objects as $object ) { |
39 | 39 | $this->addResult([ "title" => $object ]); |
40 | 40 | } |
41 | - } else |
|
42 | - $this->elements=\array_merge($this->elements, $objects); |
|
41 | + } else { |
|
42 | + $this->elements=\array_merge($this->elements, $objects); |
|
43 | + } |
|
43 | 44 | return $this; |
44 | 45 | } |
45 | 46 | |
@@ -47,8 +48,9 @@ discard block |
||
47 | 48 | $result=array (); |
48 | 49 | foreach ( $this->elements as $element ) { |
49 | 50 | if ($element instanceof SearchResult) { |
50 | - if ($element->search($query, $field) !== false) |
|
51 | - $result[]=$element->asArray(); |
|
51 | + if ($element->search($query, $field) !== false) { |
|
52 | + $result[]=$element->asArray(); |
|
53 | + } |
|
52 | 54 | } else { |
53 | 55 | if (\array_key_exists($field, $element)) { |
54 | 56 | $value=$element[$field]; |
@@ -66,8 +68,9 @@ discard block |
||
66 | 68 | |
67 | 69 | public function search($query, $field="title") { |
68 | 70 | $result=$this->_search($query, $field); |
69 | - if ($result === false) |
|
70 | - $result=NULL; |
|
71 | + if ($result === false) { |
|
72 | + $result=NULL; |
|
73 | + } |
|
71 | 74 | return new SearchResults($result); |
72 | 75 | } |
73 | 76 |
@@ -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 | } |
@@ -181,9 +181,9 @@ |
||
181 | 181 | protected function createItem($value) { |
182 | 182 | $count=$this->count(); |
183 | 183 | $itemO=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "a", "section"); |
184 | - if (\is_array($value)) |
|
185 | - $itemO->fromArray($value); |
|
186 | - else { |
|
184 | + if (\is_array($value)) { |
|
185 | + $itemO->fromArray($value); |
|
186 | + } else { |
|
187 | 187 | $itemO->setContent($value); |
188 | 188 | } |
189 | 189 | return $itemO; |
@@ -12,8 +12,9 @@ discard block |
||
12 | 12 | $image=new HtmlImg("img-", $src, $alt); |
13 | 13 | $image->setClass(""); |
14 | 14 | parent::__construct($identifier, "div", "ui image", $image); |
15 | - if (isset($size)) |
|
16 | - $this->setSize($size); |
|
15 | + if (isset($size)) { |
|
16 | + $this->setSize($size); |
|
17 | + } |
|
17 | 18 | } |
18 | 19 | |
19 | 20 | public function setCircular() { |
@@ -21,8 +22,9 @@ discard block |
||
21 | 22 | } |
22 | 23 | |
23 | 24 | public function asAvatar($caption=NULL) { |
24 | - if (isset($caption)) |
|
25 | - $this->wrap("", $caption); |
|
25 | + if (isset($caption)) { |
|
26 | + $this->wrap("", $caption); |
|
27 | + } |
|
26 | 28 | return $this->addToProperty("class", "avatar"); |
27 | 29 | } |
28 | 30 |