@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | foreach ($items as $k=>$v){ |
| 23 | 23 | $this->addItem([$k,$v]); |
| 24 | 24 | } |
| 25 | - }else{ |
|
| 25 | + } else{ |
|
| 26 | 26 | foreach ($items as $item){ |
| 27 | 27 | $this->addItem($item); |
| 28 | 28 | } |
@@ -70,9 +70,9 @@ discard block |
||
| 70 | 70 | * @return \Ajax\common\html\HtmlDoubleElement |
| 71 | 71 | */ |
| 72 | 72 | public function getItem($index) { |
| 73 | - if (is_int($index)) |
|
| 74 | - return $this->content[$index]; |
|
| 75 | - else { |
|
| 73 | + if (is_int($index)) { |
|
| 74 | + return $this->content[$index]; |
|
| 75 | + } else { |
|
| 76 | 76 | $elm=$this->getElementById($index, $this->content); |
| 77 | 77 | return $elm; |
| 78 | 78 | } |
@@ -134,10 +134,11 @@ discard block |
||
| 134 | 134 | $i=0; |
| 135 | 135 | foreach ($properties as $k=>$v){ |
| 136 | 136 | $c=$this->content[$i++]; |
| 137 | - if(isset($c)) |
|
| 138 | - $c->setProperty($k,$v); |
|
| 139 | - else |
|
| 140 | - return $this; |
|
| 137 | + if(isset($c)) { |
|
| 138 | + $c->setProperty($k,$v); |
|
| 139 | + } else { |
|
| 140 | + return $this; |
|
| 141 | + } |
|
| 141 | 142 | } |
| 142 | 143 | return $this; |
| 143 | 144 | } |
@@ -151,8 +152,7 @@ discard block |
||
| 151 | 152 | $c=$this->content[$i++]; |
| 152 | 153 | if(isset($c)===true){ |
| 153 | 154 | $c->setProperty($property,$value); |
| 154 | - } |
|
| 155 | - else{ |
|
| 155 | + } else{ |
|
| 156 | 156 | return $this; |
| 157 | 157 | } |
| 158 | 158 | } |
@@ -51,8 +51,9 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function getSideContent($index){ |
| 53 | 53 | $item= $this->getItem($index); |
| 54 | - if(isset($item)) |
|
| 55 | - return $item->getContent(); |
|
| 54 | + if(isset($item)) { |
|
| 55 | + return $item->getContent(); |
|
| 56 | + } |
|
| 56 | 57 | return null; |
| 57 | 58 | } |
| 58 | 59 | |
@@ -85,15 +86,17 @@ discard block |
||
| 85 | 86 | * @see BaseHtml::run() |
| 86 | 87 | */ |
| 87 | 88 | public function run(JsUtils $js) { |
| 88 | - if (isset($this->_bsComponent) === false) |
|
| 89 | - $this->_bsComponent=$js->semantic()->shape("#" . $this->identifier, $this->_params); |
|
| 89 | + if (isset($this->_bsComponent) === false) { |
|
| 90 | + $this->_bsComponent=$js->semantic()->shape("#" . $this->identifier, $this->_params); |
|
| 91 | + } |
|
| 90 | 92 | $this->addEventsOnRun($js); |
| 91 | 93 | return $this->_bsComponent; |
| 92 | 94 | } |
| 93 | 95 | |
| 94 | 96 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 95 | - if($this->_autoActive) |
|
| 96 | - $this->setActiveSide(0); |
|
| 97 | + if($this->_autoActive) { |
|
| 98 | + $this->setActiveSide(0); |
|
| 99 | + } |
|
| 97 | 100 | return parent::compile($js,$view); |
| 98 | 101 | } |
| 99 | 102 | } |
| 100 | 103 | \ No newline at end of file |
@@ -15,8 +15,9 @@ discard block |
||
| 15 | 15 | |
| 16 | 16 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
| 17 | 17 | parent::__construct($identifier, "div", "ui buttons"); |
| 18 | - if ($asIcons === true) |
|
| 19 | - $this->asIcons(); |
|
| 18 | + if ($asIcons === true) { |
|
| 19 | + $this->asIcons(); |
|
| 20 | + } |
|
| 20 | 21 | $this->addElements($elements, $asIcons); |
| 21 | 22 | } |
| 22 | 23 | protected function createItem($value){ |
@@ -26,8 +27,9 @@ discard block |
||
| 26 | 27 | |
| 27 | 28 | public function addElement($element, $asIcon=false) { |
| 28 | 29 | $item=$this->addItem($element); |
| 29 | - if($asIcon) |
|
| 30 | - $item->asIcon($element); |
|
| 30 | + if($asIcon) { |
|
| 31 | + $item->asIcon($element); |
|
| 32 | + } |
|
| 31 | 33 | return $item; |
| 32 | 34 | } |
| 33 | 35 | |
@@ -55,8 +57,9 @@ discard block |
||
| 55 | 57 | |
| 56 | 58 | public function asIcons() { |
| 57 | 59 | foreach ( $this->content as $item ) { |
| 58 | - if($item instanceof HtmlButton) |
|
| 59 | - $item->asIcon($item->getContent()); |
|
| 60 | + if($item instanceof HtmlButton) { |
|
| 61 | + $item->asIcon($item->getContent()); |
|
| 62 | + } |
|
| 60 | 63 | } |
| 61 | 64 | return $this->addToProperty("class", "icons"); |
| 62 | 65 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | $viewVars=$view->viewVars; |
| 14 | 14 | if (isset($viewVars["q"]) === false) { |
| 15 | 15 | $controls=array (); |
| 16 | - }else{ |
|
| 16 | + } else{ |
|
| 17 | 17 | $controls=$viewVars["q"]; |
| 18 | 18 | } |
| 19 | 19 | $controls[$identifier]=$content; |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | $this->setTagName("div"); |
| 58 | 58 | $this->removeProperty("href"); |
| 59 | 59 | $this->addToPropertyCtrl("class", "active", array("active")); |
| 60 | - }else{ |
|
| 60 | + } else{ |
|
| 61 | 61 | $this->removePropertyValue("class", "active"); |
| 62 | 62 | } |
| 63 | 63 | return $this; |
@@ -65,8 +65,9 @@ discard block |
||
| 65 | 65 | |
| 66 | 66 | public function asLink($href=NULL,$part=NULL){ |
| 67 | 67 | $this->setTagName("a"); |
| 68 | - if(isset($href)) |
|
| 69 | - $this->setProperty("href", $href); |
|
| 68 | + if(isset($href)) { |
|
| 69 | + $this->setProperty("href", $href); |
|
| 70 | + } |
|
| 70 | 71 | return $this; |
| 71 | 72 | } |
| 72 | 73 | |
@@ -77,8 +78,9 @@ discard block |
||
| 77 | 78 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile() |
| 78 | 79 | */ |
| 79 | 80 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 80 | - if(\is_array($this->content)) |
|
| 81 | - $this->content=JArray::sortAssociative($this->content, [ "icon","image","content" ]); |
|
| 81 | + if(\is_array($this->content)) { |
|
| 82 | + $this->content=JArray::sortAssociative($this->content, [ "icon","image","content" ]); |
|
| 83 | + } |
|
| 82 | 84 | return parent::compile($js, $view); |
| 83 | 85 | } |
| 84 | 86 | } |
| 85 | 87 | \ No newline at end of file |