2014-02-05 12:35:44 +01:00
|
|
|
<?php
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
2014-07-03 15:46:46 +02:00
|
|
|
use Icinga\Web\MenuRenderer;
|
2014-02-05 12:35:44 +01:00
|
|
|
use Icinga\Web\Controller\ActionController;
|
2014-02-11 16:21:36 +01:00
|
|
|
use Icinga\Web\Hook;
|
2014-02-05 12:35:44 +01:00
|
|
|
use Icinga\Web\Menu;
|
|
|
|
use Icinga\Web\Url;
|
|
|
|
|
2014-02-11 16:21:36 +01:00
|
|
|
/**
|
|
|
|
* Create complex layout parts
|
|
|
|
*/
|
2014-02-05 12:35:44 +01:00
|
|
|
class LayoutController extends ActionController
|
|
|
|
{
|
2014-02-11 16:21:36 +01:00
|
|
|
/**
|
|
|
|
* Render the menu
|
|
|
|
*/
|
2014-02-05 12:35:44 +01:00
|
|
|
public function menuAction()
|
|
|
|
{
|
2014-09-08 15:21:14 +02:00
|
|
|
$this->setAutorefreshInterval(15);
|
2014-08-22 11:10:17 +02:00
|
|
|
$this->_helper->layout()->disableLayout();
|
2014-09-08 15:21:14 +02:00
|
|
|
|
2014-09-09 13:57:48 +02:00
|
|
|
$url = Url::fromRequest();
|
|
|
|
$menu = new MenuRenderer(Menu::load(), $url->getRelativeUrl());
|
2014-09-09 15:33:42 +02:00
|
|
|
$this->view->menuRenderer = $menu->useCustomRenderer();
|
2014-02-05 12:35:44 +01:00
|
|
|
}
|
2014-02-11 16:21:36 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the top bar
|
|
|
|
*/
|
|
|
|
public function topbarAction()
|
|
|
|
{
|
|
|
|
$topbarHtmlParts = array();
|
|
|
|
|
2014-08-27 11:28:31 +02:00
|
|
|
/** @var Hook\TopBarHook $hook */
|
2014-02-11 16:21:36 +01:00
|
|
|
$hook = null;
|
|
|
|
|
2014-02-12 09:58:59 +01:00
|
|
|
foreach (Hook::all('TopBar') as $hook) {
|
2014-08-27 11:28:31 +02:00
|
|
|
$topbarHtmlParts[] = $hook->getHtml($this->getRequest());
|
2014-02-11 16:21:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->view->topbarHtmlParts = $topbarHtmlParts;
|
|
|
|
|
|
|
|
|
|
|
|
$this->renderScript('parts/topbar.phtml');
|
|
|
|
}
|
2014-02-05 12:35:44 +01:00
|
|
|
}
|