@@ -18,8 +18,9 @@ discard block |
||
| 18 | 18 | protected $_dropdown; |
| 19 | 19 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
| 20 | 20 | parent::__construct($identifier, "div", "ui buttons"); |
| 21 | - if ($asIcons === true) |
|
| 22 | - $this->asIcons(); |
|
| 21 | + if ($asIcons === true) { |
|
| 22 | + $this->asIcons(); |
|
| 23 | + } |
|
| 23 | 24 | $this->addElements($elements, $asIcons); |
| 24 | 25 | } |
| 25 | 26 | protected function createItem($value){ |
@@ -50,8 +51,9 @@ discard block |
||
| 50 | 51 | */ |
| 51 | 52 | public function addElement($element, $asIcon=false) { |
| 52 | 53 | $item=$this->addItem($element); |
| 53 | - if($asIcon) |
|
| 54 | - $item->asIcon($element); |
|
| 54 | + if($asIcon) { |
|
| 55 | + $item->asIcon($element); |
|
| 56 | + } |
|
| 55 | 57 | return $item; |
| 56 | 58 | } |
| 57 | 59 | |
@@ -79,8 +81,9 @@ discard block |
||
| 79 | 81 | |
| 80 | 82 | public function asIcons() { |
| 81 | 83 | foreach ( $this->content as $item ) { |
| 82 | - if($item instanceof HtmlButton) |
|
| 83 | - $item->asIcon($item->getContent()); |
|
| 84 | + if($item instanceof HtmlButton) { |
|
| 85 | + $item->asIcon($item->getContent()); |
|
| 86 | + } |
|
| 84 | 87 | } |
| 85 | 88 | return $this->addToProperty("class", "icons"); |
| 86 | 89 | } |
@@ -92,8 +95,9 @@ discard block |
||
| 92 | 95 | */ |
| 93 | 96 | public function addIcons($icons){ |
| 94 | 97 | foreach ( $this->content as $index=>$item ) { |
| 95 | - if($item instanceof HtmlButton && isset($icons[$index])) |
|
| 96 | - $item->addIcon($icons[$index]); |
|
| 98 | + if($item instanceof HtmlButton && isset($icons[$index])) { |
|
| 99 | + $item->addIcon($icons[$index]); |
|
| 100 | + } |
|
| 97 | 101 | } |
| 98 | 102 | return $this; |
| 99 | 103 | } |