getCategory($in_id); $this->id = $tmpobj->id; $this->name = $tmpobj->name; $this->description = $tmpobj->description; } else { $this->id = $in_id; $this->name = $in_name; $this->description = $in_description; } } /** * return the TestCategory object with id=in_id * @param $in_id */ public function getCategory($in_id) { $t_cattable = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY); $in_id = intval($in_id); $sql = "SELECT * FROM $t_cattable WHERE id = $in_id AND c_id=".api_get_course_int_id(); $res = Database::query($sql); $numrows = Database::num_rows($res); if ($numrows > 0) { $row = Database::fetch_array($res); $this->id = $row['id']; $this->name = $row['title']; $this->description = $row['description']; } } /** * add TestCategory in the database if name doesn't already exists */ public function addCategoryInBDD() { $t_cattable = Database :: get_course_table(TABLE_QUIZ_QUESTION_CATEGORY); $v_name = $this->name; $v_name = Database::escape_string($v_name); $v_description = $this->description; $v_description = Database::escape_string($v_description); // check if name already exists $sql = "SELECT count(*) AS nb FROM $t_cattable WHERE title = '$v_name' AND c_id=".api_get_course_int_id(); $result_verif = Database::query($sql); $data_verif = Database::fetch_array($result_verif); // lets add in BDD if not the same name if ($data_verif['nb'] <= 0) { $c_id = api_get_course_int_id(); $params = [ 'c_id' => $c_id, 'title' => $v_name, 'description' => $v_description, ]; $new_id = Database::insert($t_cattable, $params); if ($new_id) { $sql = "UPDATE $t_cattable SET id = iid WHERE iid = $new_id"; Database::query($sql); // add test_category in item_property table $course_id = api_get_course_int_id(); $course_info = api_get_course_info_by_id($course_id); api_item_property_update( $course_info, TOOL_TEST_CATEGORY, $new_id, 'TestCategoryAdded', api_get_user_id() ); } return $new_id; } else { return false; } } /** * Removes the category from the database * if there were question in this category, the link between question and category is removed */ public function removeCategory() { $t_cattable = Database :: get_course_table(TABLE_QUIZ_QUESTION_CATEGORY); $tbl_question_rel_cat = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY); $v_id = intval($this->id); $sql = "DELETE FROM $t_cattable WHERE id=$v_id AND c_id=".api_get_course_int_id(); $result = Database::query($sql); if (Database::affected_rows($result) <= 0) { return false; } else { $course_id = api_get_course_int_id(); // remove link between question and category $sql2 = "DELETE FROM $tbl_question_rel_cat WHERE category_id=$v_id AND c_id=".$course_id; Database::query($sql2); // item_property update $course_info = api_get_course_info_by_id($course_id); api_item_property_update( $course_info, TOOL_TEST_CATEGORY, $this->id, 'TestCategoryDeleted', api_get_user_id() ); return true; } } /** * Modify category name or description of category with id=in_id */ public function modifyCategory() { $t_cattable = Database :: get_course_table(TABLE_QUIZ_QUESTION_CATEGORY); $v_id = intval($this->id); $v_name = Database::escape_string($this->name); $v_description = Database::escape_string($this->description); $sql = "UPDATE $t_cattable SET title='$v_name', description='$v_description' WHERE id = $v_id AND c_id=".api_get_course_int_id(); $result = Database::query($sql); if (Database::affected_rows($result) <= 0) { return false; } else { // item_property update $course_id = api_get_course_int_id(); $course_info = api_get_course_info_by_id($course_id); api_item_property_update( $course_info, TOOL_TEST_CATEGORY, $this->id, 'TestCategoryModified', api_get_user_id() ); return true; } } /** * Gets the number of question of category id=in_id */ public function getCategoryQuestionsNumber() { $t_reltable = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY); $in_id = intval($this->id); $sql = "SELECT count(*) AS nb FROM $t_reltable WHERE category_id=$in_id AND c_id=".api_get_course_int_id(); $res = Database::query($sql); $row = Database::fetch_array($res); return $row['nb']; } /** * @param string $in_color */ public function display($in_color="#E0EBF5") { echo ""; } /** * Return an array of all Category objects in the database * If in_field=="" Return an array of all category objects in the database * Otherwise, return an array of all in_field value * in the database (in_field = id or name or description) */ public static function getCategoryListInfo($in_field="", $in_courseid="") { if (empty($in_courseid) || $in_courseid=="") { $in_courseid = api_get_course_int_id(); } $t_cattable = Database :: get_course_table(TABLE_QUIZ_QUESTION_CATEGORY); $in_field = Database::escape_string($in_field); $tabres = array(); if ($in_field=="") { $sql = "SELECT * FROM $t_cattable WHERE c_id=$in_courseid ORDER BY title ASC"; $res = Database::query($sql); while ($row = Database::fetch_array($res)) { $tmpcat = new TestCategory($row['id'], $row['title'], $row['description']); $tabres[] = $tmpcat; } } else { $sql = "SELECT $in_field FROM $t_cattable WHERE c_id=$in_courseid ORDER BY $in_field ASC"; $res = Database::query($sql); while ($row = Database::fetch_array($res)) { $tabres[] = $row[$in_field]; } } return $tabres; } /** * Return the TestCategory id for question with question_id = $in_questionid * In this version, a question has only 1 TestCategory. * Return the TestCategory id, 0 if none * @param int $questionId * @param int $courseId * * @return int */ public static function getCategoryForQuestion($questionId, $courseId ="") { $result = 0; if (empty($courseId) || $courseId=="") { $courseId = api_get_course_int_id(); } $table = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY); $questionId = intval($questionId); $sql = "SELECT category_id FROM $table WHERE question_id = $questionId AND c_id = $courseId"; $res = Database::query($sql); if (Database::num_rows($res) > 0) { $data = Database::fetch_array($res); $result = $data['category_id']; } return $result; } /** * true if question id has a category */ public static function isQuestionHasCategory($in_questionid) { if (TestCategory::getCategoryForQuestion($in_questionid) > 0) { return true; } return false; } /** Return the category name for question with question_id = $in_questionid In this version, a question has only 1 category. Return the category id, "" if none */ public static function getCategoryNameForQuestion($in_questionid, $in_courseid="") { if (empty($in_courseid) || $in_courseid=="") { $in_courseid = api_get_course_int_id(); } $catid = TestCategory::getCategoryForQuestion($in_questionid, $in_courseid); $result = ""; // result $t_cattable = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY); $catid = intval($catid); $sql = "SELECT title FROM $t_cattable WHERE id = $catid AND c_id = $in_courseid"; $res = Database::query($sql); $data = Database::fetch_array($res); if (Database::num_rows($res) > 0) { $result = $data['title']; } return $result; } /** * Return the list of differents categories ID for a test in the current course * input : test_id * return : array of category id (integer) * hubert.borderiou 07-04-2011 */ public static function getListOfCategoriesIDForTest($in_testid) { // parcourir les questions d'un test, recup les categories uniques dans un tableau $result = array(); $quiz = new Exercise(); $quiz->read($in_testid); $tabQuestionList = $quiz->selectQuestionList(); // the array given by selectQuestionList start at indice 1 and not at indice 0 !!! ??? for ($i=1; $i <= count($tabQuestionList); $i++) { if (!in_array(TestCategory::getCategoryForQuestion($tabQuestionList[$i]), $result)) { $result[] = TestCategory::getCategoryForQuestion($tabQuestionList[$i]); } } return $result; } /** * return the list of different categories NAME for a test * input : test_id * return : array of string * hubert.borderiou 07-04-2011 * @author function rewrote by jmontoya */ public static function getListOfCategoriesNameForTest($in_testid) { $tabcatName = array(); $tabcatID = self::getListOfCategoriesIDForTest($in_testid); for ($i=0; $i < count($tabcatID); $i++) { $cat = new TestCategory($tabcatID[$i]); $tabcatName[$cat->id] = $cat->name; } return $tabcatName; } /** * return the number of differents categories for a test * input : test_id * return : integer * hubert.borderiou 07-04-2011 */ public static function getNumberOfCategoriesForTest($in_testid) { return count(TestCategory::getListOfCategoriesIDForTest($in_testid)); } /** * return the number of question of a category id in a test * input : test_id, category_id * return : integer * hubert.borderiou 07-04-2011 */ public static function getNumberOfQuestionsInCategoryForTest($in_testid, $in_categoryid) { $nbCatResult = 0; $quiz = new Exercise(); $quiz->read($in_testid); $tabQuestionList = $quiz->selectQuestionList(); // the array given by selectQuestionList start at indice 1 and not at indice 0 !!! ? ? ? for ($i=1; $i <= count($tabQuestionList); $i++) { if (TestCategory::getCategoryForQuestion($tabQuestionList[$i]) == $in_categoryid) { $nbCatResult++; } } return $nbCatResult; } /** * return the number of question for a test using random by category * input : test_id, number of random question (min 1) * hubert.borderiou 07-04-2011 * question without categories are not counted */ public static function getNumberOfQuestionRandomByCategory($in_testid, $in_nbrandom) { $nbquestionresult = 0; $tabcatid = TestCategory::getListOfCategoriesIDForTest($in_testid); for ($i=0; $i < count($tabcatid); $i++) { if ($tabcatid[$i] > 0) { // 0 = no category for this questio $nbQuestionInThisCat = TestCategory::getNumberOfQuestionsInCategoryForTest($in_testid, $tabcatid[$i]); if ($nbQuestionInThisCat > $in_nbrandom) { $nbquestionresult += $in_nbrandom; } else { $nbquestionresult += $nbQuestionInThisCat; } } } return $nbquestionresult; } /** * Return an array (id=>name) * tabresult[0] = get_lang('NoCategory'); * */ public static function getCategoriesIdAndName($in_courseid="") { if (empty($in_courseid) || $in_courseid=="") { $in_courseid = api_get_course_int_id(); } $tabcatobject = TestCategory::getCategoryListInfo("", $in_courseid); $tabresult = array("0"=>get_lang('NoCategorySelected')); for ($i=0; $i < count($tabcatobject); $i++) { $tabresult[$tabcatobject[$i]->id] = $tabcatobject[$i]->name; } return $tabresult; } /** * return an array of question_id for each category * tabres[0] = array of question id with category id = 0 (i.e. no category) * tabres[24] = array of question id with category id = 24 * In this version, a question has 0 or 1 category */ public static function getQuestionsByCat($in_exerciseId) { $TBL_EXERCISE_QUESTION = Database::get_course_table(TABLE_QUIZ_TEST_QUESTION); $TBL_QUESTION_REL_CATEGORY = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY); $in_exerciseId = intval($in_exerciseId); $sql = "SELECT qrc.question_id, qrc.category_id FROM $TBL_QUESTION_REL_CATEGORY qrc, $TBL_EXERCISE_QUESTION eq WHERE exercice_id=$in_exerciseId AND eq.question_id=qrc.question_id AND eq.c_id=".api_get_course_int_id()." AND eq.c_id=qrc.c_id ORDER BY category_id, question_id"; $res = Database::query($sql); $list = array(); while ($data = Database::fetch_array($res)) { if (!isset($tabres[$data['category_id']])) { $list[$data['category_id']] = array(); } $list[$data['category_id']][] = $data['question_id']; } return $list; } /** * return a tab of $in_number random elements of $in_tab */ public static function getNElementsFromArray($in_tab, $in_number) { $tabres = $in_tab; shuffle($tabres); if ($in_number < count($tabres)) { $tabres = array_slice($tabres, 0, $in_number); } return $tabres; } /** * display the category */ public static function displayCategoryAndTitle($in_questionID, $in_display_category_name = 1) { echo self::returnCategoryAndTitle($in_questionID, $in_display_category_name); } /** * @param $in_questionID * @param int $in_display_category_name * @return null|string */ public static function returnCategoryAndTitle($in_questionID, $in_display_category_name = 1) { $is_student = !(api_is_allowed_to_edit(null,true) || api_is_session_admin()); // @todo fix $_SESSION['objExercise'] $objExercise = isset($_SESSION['objExercise']) ? $_SESSION['objExercise'] : null; if (!empty($objExercise)) { $in_display_category_name = $objExercise->display_category_name; } $content = null; if (TestCategory::getCategoryNameForQuestion($in_questionID) != "" && ($in_display_category_name == 1 || !$is_student)) { $content .= '