/**
  * List all tests in which current user participated
  */
 public function create()
 {
     global $ilTabs;
     $this->lng->loadLanguageModule("excv");
     $ilTabs->setBackTarget($this->lng->txt("back"), $this->ctrl->getLinkTarget($this, "cancel"));
     include_once "Modules/Exercise/classes/class.ilExerciseVerificationTableGUI.php";
     $table = new ilExerciseVerificationTableGUI($this, "create");
     $this->tpl->setContent($table->getHTML());
 }
 /**
  * List all tests in which current user participated
  */
 public function create()
 {
     global $ilTabs;
     if ($this->id_type == self::WORKSPACE_NODE_ID) {
         include_once "Services/DiskQuota/classes/class.ilDiskQuotaHandler.php";
         if (!ilDiskQuotaHandler::isUploadPossible()) {
             $this->lng->loadLanguageModule("file");
             ilUtil::sendFailure($this->lng->txt("personal_workspace_quota_exceeded_warning"), true);
             $this->ctrl->redirect($this, "cancel");
         }
     }
     $this->lng->loadLanguageModule("excv");
     $ilTabs->setBackTarget($this->lng->txt("back"), $this->ctrl->getLinkTarget($this, "cancel"));
     include_once "Modules/Exercise/classes/class.ilExerciseVerificationTableGUI.php";
     $table = new ilExerciseVerificationTableGUI($this, "create");
     $this->tpl->setContent($table->getHTML());
 }