addCss('/modules/backend/assets/css/dashboard/dashboard.css', 'core'); if (BackendAuth::check()) { new ReportContainer($this); } } public function index() { if ($redirect = $this->checkPermissionRedirect()) { return $redirect; } $this->pageTitle = 'backend::lang.dashboard.menu_label'; BackendMenu::setContextMainMenu('dashboard'); } public function index_onInitReportContainer() { return ['#dashReportContainer' => $this->widget->reportContainer->render()]; } /** * Custom permissions check that will redirect to the next * available menu item, if permission to this page is denied. */ protected function checkPermissionRedirect() { if (!$this->user->hasAccess('backend.access_dashboard')) { $true = function(){ return true; }; if ($first = array_first(BackendMenu::listMainMenuItems(), $true)) { return Redirect::intended($first->url); } } } }