diff --git a/modules/monitoring/application/controllers/TacticalController.php b/modules/monitoring/application/controllers/TacticalController.php index 40334185f..e4db55721 100644 --- a/modules/monitoring/application/controllers/TacticalController.php +++ b/modules/monitoring/application/controllers/TacticalController.php @@ -8,16 +8,9 @@ use Icinga\Module\Monitoring\Controller; use Icinga\Web\Url; use Icinga\Web\Widget\Tabextension\DashboardAction; use Icinga\Web\Widget\Tabextension\MenuAction; -use Icinga\Web\Widget\Tabextension\OutputFormat; class TacticalController extends Controller { - public function init() - { - parent::init(); - $this->createTabs(); - } - public function indexAction() { $this->setAutorefreshInterval(15); @@ -111,12 +104,4 @@ class TacticalController extends Controller ->render(); $this->view->statusSummary = $summary; } - - /** - * Create all tabs for this controller - */ - protected function createTabs() - { - $this->getTabs()->extend(new OutputFormat(['pdf'])); - } }