icingaweb2/application/controllers/SearchController.php

27 lines
709 B
PHP
Raw Normal View History

2014-02-25 11:56:58 +01:00
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
2014-02-25 11:56:58 +01:00
use Icinga\Web\Controller\ActionController;
use Icinga\Web\Widget;
use Icinga\Web\Widget\SearchDashboard;
2014-02-25 11:56:58 +01:00
/**
* Search controller
*/
class SearchController extends ActionController
{
public function indexAction()
{
$searchDashboard = new SearchDashboard();
$searchDashboard->setUser($this->Auth()->getUser());
$this->view->dashboard = $searchDashboard->search($this->params->get('q'));
// NOTE: This renders the dashboard twice. Remove this once we can catch exceptions thrown in view scripts.
$this->view->dashboard->render();
}
public function hintAction()
{
2014-02-25 11:56:58 +01:00
}
}