@@ -29,12 +29,14 @@ discard block |
||
29 | 29 | if (\is_string($end)) { |
30 | 30 | $label=$end; |
31 | 31 | \array_pop($fields); |
32 | - } else |
|
33 | - $label=NULL; |
|
32 | + } else { |
|
33 | + $label=NULL; |
|
34 | + } |
|
34 | 35 | } |
35 | 36 | } |
36 | - if (isset($label)) |
|
37 | - $this->setLabel($label); |
|
37 | + if (isset($label)) { |
|
38 | + $this->setLabel($label); |
|
39 | + } |
|
38 | 40 | foreach ( $fields as $field ) { |
39 | 41 | $this->addItem($field); |
40 | 42 | } |
@@ -57,8 +59,9 @@ discard block |
||
57 | 59 | |
58 | 60 | public function addItem($item) { |
59 | 61 | $item=parent::addItem($item); |
60 | - if($item instanceof HtmlFormField) |
|
61 | - $item->setContainer($this); |
|
62 | + if($item instanceof HtmlFormField) { |
|
63 | + $item->setContainer($this); |
|
64 | + } |
|
62 | 65 | return $item; |
63 | 66 | } |
64 | 67 | |
@@ -73,8 +76,9 @@ discard block |
||
73 | 76 | if ($this->_equalWidth) { |
74 | 77 | $count=$this->count(); |
75 | 78 | $this->addToProperty("class", Wide::getConstants()["W".$count]." fields"); |
76 | - } else |
|
77 | - $this->addToProperty("class", "fields"); |
|
79 | + } else { |
|
80 | + $this->addToProperty("class", "fields"); |
|
81 | + } |
|
78 | 82 | return parent::compile($js, $view); |
79 | 83 | } |
80 | 84 | |
@@ -136,8 +140,9 @@ discard block |
||
136 | 140 | $fields[]=$itemO; |
137 | 141 | } |
138 | 142 | $radios=new HtmlFormFields($identifier, $fields); |
139 | - if (isset($label)) |
|
140 | - $radios->setLabel($label)->setProperty("for", $name); |
|
143 | + if (isset($label)) { |
|
144 | + $radios->setLabel($label)->setProperty("for", $name); |
|
145 | + } |
|
141 | 146 | return $radios; |
142 | 147 | } |
143 | 148 |