コード例 #1
0
ファイル: Dashboard.php プロジェクト: zource/zource
 public function selectAction()
 {
     /** @var DashboardEntity $dashboard */
     $dashboard = $this->dashboardTaskService->find($this->params('id'));
     if (!$dashboard) {
         return $this->notFoundAction();
     }
     $this->dashboardTaskService->selectDashboard($this->zourceAccount(), $dashboard);
     return $this->redirect()->toRoute('dashboard');
 }