17 lines
657 B
PHTML
17 lines
657 B
PHTML
<?php
|
|
|
|
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">
|
|
<input
|
|
type="text" name="q" id="search" class="search" placeholder="<?= $this->translate('Search') ?> …"
|
|
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
|
/>
|
|
</form>
|
|
<?php endif; ?>
|
|
<?= $menuRenderer->setCssClass('primary-nav')->setElementTag('nav')->setHeading(t('Navigation')); ?>
|