2014-02-25 11:56:58 +01:00
|
|
|
<?php
|
2014-07-15 13:39:22 +02:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
2014-02-25 11:56:58 +01:00
|
|
|
|
|
|
|
use Icinga\Web\Controller\ActionController;
|
|
|
|
use Icinga\Web\Widget;
|
2014-09-04 16:31:10 +02:00
|
|
|
use Icinga\Web\Widget\SearchDashboard;
|
2014-02-25 11:56:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search controller
|
|
|
|
*/
|
|
|
|
class SearchController extends ActionController
|
|
|
|
{
|
|
|
|
public function indexAction()
|
|
|
|
{
|
2014-09-04 19:35:31 +02:00
|
|
|
$this->view->dashboard = SearchDashboard::search($this->params->get('q'));
|
2014-09-04 16:31:10 +02:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
}
|