@@ -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 | } |
@@ -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 | } |
@@ -33,11 +33,12 @@ discard block |
||
33 | 33 | foreach ($this->content as $pb){ |
34 | 34 | $pb->setActive($value); |
35 | 35 | } |
36 | - }else{ |
|
37 | - if ($value===true) |
|
38 | - $this->active="active"; |
|
39 | - else |
|
40 | - $this->active=""; |
|
36 | + } else{ |
|
37 | + if ($value===true) { |
|
38 | + $this->active="active"; |
|
39 | + } else { |
|
40 | + $this->active=""; |
|
41 | + } |
|
41 | 42 | } |
42 | 43 | return $this; |
43 | 44 | } |
@@ -47,11 +48,12 @@ discard block |
||
47 | 48 | foreach ($this->content as $pb){ |
48 | 49 | $pb->setStriped($value); |
49 | 50 | } |
50 | - }else{ |
|
51 | - if ($value===true) |
|
52 | - $this->striped="progress-bar-striped"; |
|
53 | - else |
|
54 | - $this->striped=""; |
|
51 | + } else{ |
|
52 | + if ($value===true) { |
|
53 | + $this->striped="progress-bar-striped"; |
|
54 | + } else { |
|
55 | + $this->striped=""; |
|
56 | + } |
|
55 | 57 | } |
56 | 58 | return $this; |
57 | 59 | } |
@@ -61,11 +63,12 @@ discard block |
||
61 | 63 | foreach ($this->content as $pb){ |
62 | 64 | $pb->showCaption($value); |
63 | 65 | } |
64 | - }else{ |
|
65 | - if ($value===true) |
|
66 | - $this->caption="%value%%"; |
|
67 | - else |
|
68 | - $this->caption='<span class="sr-only">%value%% Complete (%style%)</span>'; |
|
66 | + } else{ |
|
67 | + if ($value===true) { |
|
68 | + $this->caption="%value%%"; |
|
69 | + } else { |
|
70 | + $this->caption='<span class="sr-only">%value%% Complete (%style%)</span>'; |
|
71 | + } |
|
69 | 72 | } |
70 | 73 | return $this; |
71 | 74 | } |
@@ -137,8 +140,9 @@ discard block |
||
137 | 140 | if(isset($this->styleLimits)&& JArray::isAssociative($this->styleLimits)){ |
138 | 141 | foreach ($this->styleLimits as $k=>$v){ |
139 | 142 | $actualStyle=$k; |
140 | - if($v>$this->value) |
|
141 | - break; |
|
143 | + if($v>$this->value) { |
|
144 | + break; |
|
145 | + } |
|
142 | 146 | } |
143 | 147 | } |
144 | 148 | $this->style=$actualStyle; |