@@ -18,19 +18,19 @@ discard block |
||
| 18 | 18 | */ |
| 19 | 19 | class HtmlTab extends HtmlSemCollection { |
| 20 | 20 | |
| 21 | - protected $params = []; |
|
| 21 | + protected $params=[]; |
|
| 22 | 22 | |
| 23 | - protected $_activated = false; |
|
| 23 | + protected $_activated=false; |
|
| 24 | 24 | |
| 25 | - public function __construct($identifier, $tabs = array()) { |
|
| 25 | + public function __construct($identifier, $tabs=array()) { |
|
| 26 | 26 | parent::__construct($identifier, "div", ""); |
| 27 | - $menu = new HtmlMenu("menu" . $this->identifier); |
|
| 27 | + $menu=new HtmlMenu("menu".$this->identifier); |
|
| 28 | 28 | $menu->asTab(false)->setAttachment(NULL, Side::TOP); |
| 29 | - $this->content["menu"] = $menu; |
|
| 29 | + $this->content["menu"]=$menu; |
|
| 30 | 30 | $this->addItems($tabs); |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - public function getMenu(){ |
|
| 33 | + public function getMenu() { |
|
| 34 | 34 | return $this->content['menu']; |
| 35 | 35 | } |
| 36 | 36 | |
@@ -41,18 +41,18 @@ discard block |
||
| 41 | 41 | * @return HtmlSegment |
| 42 | 42 | */ |
| 43 | 43 | protected function createItem($value) { |
| 44 | - $count = $this->count(); |
|
| 45 | - $title = $value; |
|
| 46 | - $content = NULL; |
|
| 44 | + $count=$this->count(); |
|
| 45 | + $title=$value; |
|
| 46 | + $content=NULL; |
|
| 47 | 47 | if (\is_array($value)) { |
| 48 | - $title = @$value[0]; |
|
| 49 | - $content = @$value[1]; |
|
| 48 | + $title=@$value[0]; |
|
| 49 | + $content=@$value[1]; |
|
| 50 | 50 | } |
| 51 | - $menuItem = $this->content["menu"]->addItem($title); |
|
| 51 | + $menuItem=$this->content["menu"]->addItem($title); |
|
| 52 | 52 | $menuItem->addToProperty("data-tab", $menuItem->getIdentifier()); |
| 53 | 53 | $menuItem->removeProperty("href"); |
| 54 | - $result = $this->createSegment($count, $content, $menuItem->getIdentifier()); |
|
| 55 | - $result->menuTab = $menuItem; |
|
| 54 | + $result=$this->createSegment($count, $content, $menuItem->getIdentifier()); |
|
| 55 | + $result->menuTab=$menuItem; |
|
| 56 | 56 | return $result; |
| 57 | 57 | } |
| 58 | 58 | |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | * @return \Ajax\semantic\html\elements\HtmlSegment |
| 65 | 65 | */ |
| 66 | 66 | private function createSegment($count, $content, $datatab) { |
| 67 | - $segment = new HtmlSegment("item-" . $this->identifier . "-" . $count, $content); |
|
| 67 | + $segment=new HtmlSegment("item-".$this->identifier."-".$count, $content); |
|
| 68 | 68 | $segment->setAttachment(NULL, Side::BOTTOM) |
| 69 | 69 | ->addToProperty("class", "tab") |
| 70 | 70 | ->addToProperty("data-tab", $datatab); |
@@ -81,10 +81,10 @@ discard block |
||
| 81 | 81 | * @return \Ajax\semantic\html\modules\HtmlTab |
| 82 | 82 | */ |
| 83 | 83 | public function setTabContent($index, $content) { |
| 84 | - $menu = $this->content["menu"]; |
|
| 85 | - if ($index < $menu->count()) { |
|
| 86 | - if (isset($this->content[$index]) === false) { |
|
| 87 | - $this->content[$index] = $this->createSegment($index, $content, $menu->getItem($index) |
|
| 84 | + $menu=$this->content["menu"]; |
|
| 85 | + if ($index<$menu->count()) { |
|
| 86 | + if (isset($this->content[$index])===false) { |
|
| 87 | + $this->content[$index]=$this->createSegment($index, $content, $menu->getItem($index) |
|
| 88 | 88 | ->getIdentifier()); |
| 89 | 89 | } else |
| 90 | 90 | $this->content[$index]->setContent($content); |
@@ -99,8 +99,8 @@ discard block |
||
| 99 | 99 | * @return \Ajax\semantic\html\modules\HtmlTab |
| 100 | 100 | */ |
| 101 | 101 | public function setTabsContent($contents) { |
| 102 | - $size = \sizeof($contents); |
|
| 103 | - for ($i = 0; $i < $size; $i ++) { |
|
| 102 | + $size=\sizeof($contents); |
|
| 103 | + for ($i=0; $i<$size; $i++) { |
|
| 104 | 104 | $this->setTabContent($i, $contents[$i]); |
| 105 | 105 | } |
| 106 | 106 | return $this; |
@@ -113,11 +113,11 @@ discard block |
||
| 113 | 113 | * @return \Ajax\semantic\html\modules\HtmlTab |
| 114 | 114 | */ |
| 115 | 115 | public function activate($index) { |
| 116 | - $item = $this->content["menu"]->getItem($index); |
|
| 117 | - if ($item != null) { |
|
| 116 | + $item=$this->content["menu"]->getItem($index); |
|
| 117 | + if ($item!=null) { |
|
| 118 | 118 | $item->setActive(true); |
| 119 | 119 | $this->content[$index]->setActive(true); |
| 120 | - $this->_activated = true; |
|
| 120 | + $this->_activated=true; |
|
| 121 | 121 | } |
| 122 | 122 | return $this; |
| 123 | 123 | } |
@@ -151,9 +151,9 @@ discard block |
||
| 151 | 151 | * @param array $params |
| 152 | 152 | * @return \Ajax\semantic\html\elements\HtmlSegment |
| 153 | 153 | */ |
| 154 | - public function forwardTab($index, JsUtils $js, $title, $initialController, $controller, $action, $params = array()) { |
|
| 154 | + public function forwardTab($index, JsUtils $js, $title, $initialController, $controller, $action, $params=array()) { |
|
| 155 | 155 | if (\array_key_exists($index, $this->content)) { |
| 156 | - $this->content[$index] = $js->forward($initialController, $controller, $action, $params); |
|
| 156 | + $this->content[$index]=$js->forward($initialController, $controller, $action, $params); |
|
| 157 | 157 | return $this->content[$index]; |
| 158 | 158 | } |
| 159 | 159 | |
@@ -174,9 +174,9 @@ discard block |
||
| 174 | 174 | * The parameters to pass to the view |
| 175 | 175 | * @return \Ajax\semantic\html\elements\HtmlSegment |
| 176 | 176 | */ |
| 177 | - public function renderViewTab($index, JsUtils $js, $title, $initialController, $viewName, $params = array()) { |
|
| 177 | + public function renderViewTab($index, JsUtils $js, $title, $initialController, $viewName, $params=array()) { |
|
| 178 | 178 | if (\array_key_exists($index, $this->content)) { |
| 179 | - $this->content[$index] = $js->renderContent($initialController, $viewName, $params); |
|
| 179 | + $this->content[$index]=$js->renderContent($initialController, $viewName, $params); |
|
| 180 | 180 | return $this->content[$index]; |
| 181 | 181 | } |
| 182 | 182 | return $this->addAndRenderViewTab($js, $title, $initialController, $viewName, $params); |
@@ -196,10 +196,10 @@ discard block |
||
| 196 | 196 | * @param array $params |
| 197 | 197 | * @return \Ajax\semantic\html\elements\HtmlSegment |
| 198 | 198 | */ |
| 199 | - public function addAndForwardTab(JsUtils $js, $title, $initialController, $controller, $action, $params = array()) { |
|
| 199 | + public function addAndForwardTab(JsUtils $js, $title, $initialController, $controller, $action, $params=array()) { |
|
| 200 | 200 | \ob_start(); |
| 201 | 201 | $js->forward($initialController, $controller, $action, $params); |
| 202 | - $content = \ob_get_clean(); |
|
| 202 | + $content=\ob_get_clean(); |
|
| 203 | 203 | return $this->addTab($title, $content); |
| 204 | 204 | } |
| 205 | 205 | |
@@ -215,11 +215,11 @@ discard block |
||
| 215 | 215 | * The parameters to pass to the view |
| 216 | 216 | * @return \Ajax\semantic\html\elements\HtmlSegment |
| 217 | 217 | */ |
| 218 | - public function addAndRenderViewTab(JsUtils $js, $title, $initialController, $viewName, $params = array()) { |
|
| 218 | + public function addAndRenderViewTab(JsUtils $js, $title, $initialController, $viewName, $params=array()) { |
|
| 219 | 219 | return $this->addTab($title, $js->renderContent($initialController, $viewName, $params)); |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - public function setPointing($value = Direction::NONE) { |
|
| 222 | + public function setPointing($value=Direction::NONE) { |
|
| 223 | 223 | return $this->content["menu"]->setPointing($value); |
| 224 | 224 | } |
| 225 | 225 | |
@@ -254,25 +254,25 @@ discard block |
||
| 254 | 254 | * @return \Ajax\semantic\html\modules\HtmlTab |
| 255 | 255 | */ |
| 256 | 256 | public function setMenu($menu) { |
| 257 | - $contentSize = \sizeof($this->content); |
|
| 258 | - for ($i = 0; $i < $contentSize; $i ++) { |
|
| 259 | - if ($menu->getItem($i) !== NULL) { |
|
| 257 | + $contentSize=\sizeof($this->content); |
|
| 258 | + for ($i=0; $i<$contentSize; $i++) { |
|
| 259 | + if ($menu->getItem($i)!==NULL) { |
|
| 260 | 260 | if (isset($this->content[$i])) { |
| 261 | 261 | $menu->getItem($i)->addToProperty("data-tab", $this->content[$i]->getProperty("data-tab")); |
| 262 | 262 | } |
| 263 | 263 | } |
| 264 | 264 | } |
| 265 | - $menuSize = $menu->count(); |
|
| 266 | - for ($i = 0; $i < $menuSize; $i ++) { |
|
| 265 | + $menuSize=$menu->count(); |
|
| 266 | + for ($i=0; $i<$menuSize; $i++) { |
|
| 267 | 267 | $menu->getItem($i)->removeProperty("href"); |
| 268 | - if (isset($this->content[$i]) === false) { |
|
| 269 | - $this->content[$i] = $this->createSegment($i, "New content", $menu->getItem($i) |
|
| 268 | + if (isset($this->content[$i])===false) { |
|
| 269 | + $this->content[$i]=$this->createSegment($i, "New content", $menu->getItem($i) |
|
| 270 | 270 | ->getIdentifier()); |
| 271 | 271 | } |
| 272 | 272 | $menu->getItem($i)->addToProperty("data-tab", $this->content[$i]->getProperty("data-tab")); |
| 273 | 273 | } |
| 274 | 274 | |
| 275 | - $this->content["menu"] = $menu; |
|
| 275 | + $this->content["menu"]=$menu; |
|
| 276 | 276 | return $this; |
| 277 | 277 | } |
| 278 | 278 | |
@@ -281,19 +281,19 @@ discard block |
||
| 281 | 281 | * @see BaseHtml::run() |
| 282 | 282 | */ |
| 283 | 283 | public function run(JsUtils $js) { |
| 284 | - if (isset($this->_bsComponent) === false) |
|
| 285 | - $this->_bsComponent = $js->semantic()->tab("#" . $this->identifier . " .item", $this->params); |
|
| 284 | + if (isset($this->_bsComponent)===false) |
|
| 285 | + $this->_bsComponent=$js->semantic()->tab("#".$this->identifier." .item", $this->params); |
|
| 286 | 286 | $this->addEventsOnRun($js); |
| 287 | 287 | return $this->_bsComponent; |
| 288 | 288 | } |
| 289 | 289 | |
| 290 | - public function compile(JsUtils $js = NULL, &$view = NULL) { |
|
| 291 | - if (! $this->_activated && $this->content["menu"]->count() > 0 && \sizeof($this->content) > 1) |
|
| 290 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
| 291 | + if (!$this->_activated && $this->content["menu"]->count()>0 && \sizeof($this->content)>1) |
|
| 292 | 292 | $this->activate(0); |
| 293 | 293 | return parent::compile($js, $view); |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | - public function setInverted($recursive=true){ |
|
| 296 | + public function setInverted($recursive=true) { |
|
| 297 | 297 | parent::setInverted($recursive); |
| 298 | 298 | $this->content['menu']->addClass('inverted'); |
| 299 | 299 | } |
@@ -86,8 +86,9 @@ discard block |
||
| 86 | 86 | if (isset($this->content[$index]) === false) { |
| 87 | 87 | $this->content[$index] = $this->createSegment($index, $content, $menu->getItem($index) |
| 88 | 88 | ->getIdentifier()); |
| 89 | - } else |
|
| 90 | - $this->content[$index]->setContent($content); |
|
| 89 | + } else { |
|
| 90 | + $this->content[$index]->setContent($content); |
|
| 91 | + } |
|
| 91 | 92 | } |
| 92 | 93 | return $this; |
| 93 | 94 | } |
@@ -281,15 +282,17 @@ discard block |
||
| 281 | 282 | * @see BaseHtml::run() |
| 282 | 283 | */ |
| 283 | 284 | public function run(JsUtils $js) { |
| 284 | - if (isset($this->_bsComponent) === false) |
|
| 285 | - $this->_bsComponent = $js->semantic()->tab("#" . $this->identifier . " .item", $this->params); |
|
| 285 | + if (isset($this->_bsComponent) === false) { |
|
| 286 | + $this->_bsComponent = $js->semantic()->tab("#" . $this->identifier . " .item", $this->params); |
|
| 287 | + } |
|
| 286 | 288 | $this->addEventsOnRun($js); |
| 287 | 289 | return $this->_bsComponent; |
| 288 | 290 | } |
| 289 | 291 | |
| 290 | 292 | public function compile(JsUtils $js = NULL, &$view = NULL) { |
| 291 | - if (! $this->_activated && $this->content["menu"]->count() > 0 && \sizeof($this->content) > 1) |
|
| 292 | - $this->activate(0); |
|
| 293 | + if (! $this->_activated && $this->content["menu"]->count() > 0 && \sizeof($this->content) > 1) { |
|
| 294 | + $this->activate(0); |
|
| 295 | + } |
|
| 293 | 296 | return parent::compile($js, $view); |
| 294 | 297 | } |
| 295 | 298 | |