mirror of
https://github.com/Icinga/icingaweb2-module-graphite.git
synced 2026-06-08 16:23:22 -04:00
Merge branch 'feature/pdf-export-13'
This commit is contained in:
commit
7a49024701
1 changed files with 5 additions and 1 deletions
|
|
@ -11,6 +11,7 @@ use Icinga\Module\Monitoring\DataView\DataView;
|
|||
use Icinga\Web\Url;
|
||||
use Icinga\Web\Widget\Tabextension\DashboardAction;
|
||||
use Icinga\Web\Widget\Tabextension\MenuAction;
|
||||
use Icinga\Web\Widget\Tabextension\OutputFormat;
|
||||
|
||||
class ListController extends MonitoringAwareController
|
||||
{
|
||||
|
|
@ -19,7 +20,10 @@ class ListController extends MonitoringAwareController
|
|||
public function init()
|
||||
{
|
||||
parent::init();
|
||||
$this->getTabs()->extend(new DashboardAction())->extend(new MenuAction());
|
||||
$this->getTabs()
|
||||
->extend(new OutputFormat([OutputFormat::TYPE_CSV, OutputFormat::TYPE_JSON]))
|
||||
->extend(new DashboardAction())
|
||||
->extend(new MenuAction());
|
||||
}
|
||||
|
||||
public function hostsAction()
|
||||
|
|
|
|||
Loading…
Reference in a new issue