diff options
Diffstat (limited to 'application/views/scripts/layout/menu.phtml')
-rw-r--r-- | application/views/scripts/layout/menu.phtml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/application/views/scripts/layout/menu.phtml b/application/views/scripts/layout/menu.phtml new file mode 100644 index 0000000..dfb544d --- /dev/null +++ b/application/views/scripts/layout/menu.phtml @@ -0,0 +1,20 @@ +<?php + +use Icinga\Web\Navigation\ConfigMenu; +use Icinga\Web\Widget\SearchDashboard; + +$searchDashboard = new SearchDashboard(); +$searchDashboard->setUser($this->Auth()->getUser()); + +if ($searchDashboard->search('dummy')->getPane('search')->hasDashlets()): ?> + <form action="<?= $this->href('search') ?>" method="get" role="search" class="search-control"> + <input type="text" name="q" id="search" class="search search-input" required + placeholder="<?= $this->translate('Search') ?> …" + autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"> + <button class="search-reset icon-cancel" type="reset"></button> + </form> +<?php endif; ?> +<?= $menuRenderer->setCssClass('primary-nav')->setElementTag('nav')->setHeading(t('Navigation')); ?> +<nav class="config-menu"> + <?= new ConfigMenu() ?> +</nav> |