view->url = Url::fromRequest()->getRelativeUrl(); $this->view->items = Menu::fromConfig()->getChildren(); $this->view->sub = false; } /** * Render the top bar */ public function topbarAction() { $topbarHtmlParts = array(); /** @var Hook\Layout\TopBar $hook */ $hook = null; foreach (Hook::all('TopBar') as $hook) { $topbarHtmlParts[] = $hook->getHtml($this->getRequest(), $this->view); } $this->view->topbarHtmlParts = $topbarHtmlParts; $this->renderScript('parts/topbar.phtml'); } } // @codingStandardsIgnoreEnd