getTopMenus(); $leftMenus = $indexService->getLeftMenus(); $appInfo = $indexService->getAppInfo(); $this->view->setRenderLevel(View::LEVEL_ACTION_VIEW); $this->view->setVar('app_info', $appInfo); $this->view->setVar('top_menus', $topMenus); $this->view->setVar('left_menus', $leftMenus); } /** * @Get("/main", name="admin.main") */ public function mainAction() { $indexService = new IndexService(); $statInfo = $indexService->getStatInfo(); $appInfo = $indexService->getAppInfo(); $serverInfo = $indexService->getServerInfo(); $this->view->setVar('stat_info', $statInfo); $this->view->setVar('app_info', $appInfo); $this->view->setVar('server_info', $serverInfo); } }