Esempio n. 1
0
 /**
  * Deletes the page object of a question with a given ID
  *
  * @param integer $question_id The database id of the question
  * @access protected
  */
 protected function deletePageOfQuestion($question_id)
 {
     include_once "./Modules/TestQuestionPool/classes/class.ilAssQuestionPage.php";
     $page = new ilAssQuestionPage($question_id);
     $page->delete();
     return true;
 }