@@ -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 |
@@ -23,7 +23,7 @@ |
||
23 | 23 | } |
24 | 24 | if($content instanceof HtmlSemDoubleElement){ |
25 | 25 | $content=new HtmlSemDoubleElement($this->identifier."-".$index,"div","",$content); |
26 | - }elseif ($content instanceof HtmlImg){ |
|
26 | + } elseif ($content instanceof HtmlImg){ |
|
27 | 27 | $this->addToPropertyCtrl("class", "image", array("image")); |
28 | 28 | } |
29 | 29 | $content->addToProperty("class",(($index===0)?"visible":"hidden")." content"); |
@@ -19,8 +19,9 @@ |
||
19 | 19 | if (isset($type)) { |
20 | 20 | if ($type == "page") { |
21 | 21 | $this->asPageHeader($niveau); |
22 | - } else |
|
23 | - $this->asContentHeader($niveau); |
|
22 | + } else { |
|
23 | + $this->asContentHeader($niveau); |
|
24 | + } |
|
24 | 25 | } |
25 | 26 | $this->content=$content; |
26 | 27 | } |
@@ -29,10 +29,11 @@ |
||
29 | 29 | if(isset($numCols)){ |
30 | 30 | $numCols=min(16,$numCols); |
31 | 31 | $numCols=max(1,$numCols); |
32 | - if($colSizing) |
|
33 | - $width=(int)(16/$numCols); |
|
34 | - else |
|
35 | - $this->_colSize=16/$numCols; |
|
32 | + if($colSizing) { |
|
33 | + $width=(int)(16/$numCols); |
|
34 | + } else { |
|
35 | + $this->_colSize=16/$numCols; |
|
36 | + } |
|
36 | 37 | for ($i=0;$i<$numCols;$i++){ |
37 | 38 | $this->addItem($width); |
38 | 39 | } |