Exemplo n.º 1
0
 /**
  * @return void
  */
 public function studentIndexAction()
 {
     if ($this->currentUser->isInstructor()) {
         $this->redirect('index');
     }
     $sessions = $this->studentQuizSessionRepository->findByStudent($this->currentUser->getIdentifier());
     $this->view->assign('studentQuizSessions', $sessions);
     $this->view->assign('disableContinuesSave', true);
     $this->view->assign('hideFinishButtonAndClock', true);
     $this->view->assign('title', $this->translateById('overview'));
 }