List views: Show the output and dashboard actions for all views

refs #7876
This commit is contained in:
Johannes Meyer 2015-04-20 14:58:25 +02:00
parent 0997eaf459
commit 1ff9449ad7
1 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@
use Icinga\Module\Monitoring\Controller; use Icinga\Module\Monitoring\Controller;
use Icinga\Web\Url; use Icinga\Web\Url;
use Icinga\Web\Widget\Tabextension\DashboardAction;
use Icinga\Web\Widget\Tabextension\OutputFormat;
use Icinga\Application\Config; use Icinga\Application\Config;
use Icinga\Application\Logger; use Icinga\Application\Logger;
use Icinga\Data\ConfigObject; use Icinga\Data\ConfigObject;
@ -29,7 +31,7 @@ class ListController extends Controller
'list/' 'list/'
. str_replace(' ', '', $action) . str_replace(' ', '', $action)
) )
))->activate($action); ))->extend(new OutputFormat())->extend(new DashboardAction())->activate($action);
} }
/** /**