2014-09-08 15:21:14 +02:00
|
|
|
<?php
|
2015-07-24 13:34:11 +02:00
|
|
|
|
2014-09-08 15:21:14 +02:00
|
|
|
use Icinga\Web\Widget\SearchDashboard;
|
|
|
|
|
2015-07-24 13:34:11 +02:00
|
|
|
$searchDashboard = new SearchDashboard();
|
|
|
|
$searchDashboard->setUser($this->Auth()->getUser());
|
|
|
|
|
|
|
|
if ($searchDashboard->search('dummy')->getPane('search')->hasDashlets()): ?>
|
2014-09-08 15:21:14 +02:00
|
|
|
<form action="<?= $this->href('search') ?>" method="get" role="search">
|
|
|
|
<input
|
2015-03-19 11:22:56 +01:00
|
|
|
type="text" name="q" id="search" class="search" placeholder="<?= $this->translate('Search') ?> …"
|
2014-09-08 15:21:14 +02:00
|
|
|
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
|
|
|
|
/>
|
|
|
|
</form>
|
2015-09-04 10:53:01 +02:00
|
|
|
<?php endif; ?>
|
2015-09-27 16:06:46 +02:00
|
|
|
<?= $menuRenderer->setCssClass('primary-nav')->setElementTag('nav')->setHeading(t('Navigation')); ?>
|