12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193 |
- <?php
- /* For licensing terms, see /license.txt */
- use ChamiloSession as Session;
- /**
- * Class TestCategory.
- * Manage question categories inside an exercise.
- *
- * @author hubert.borderiou
- * @author Julio Montoya - several fixes
- *
- * @todo rename to ExerciseCategory
- */
- class TestCategory
- {
- public $id;
- public $name;
- public $description;
- /**
- * Constructor of the class Category.
- */
- public function __construct()
- {
- $this->name = '';
- $this->description = '';
- }
- /**
- * return the TestCategory object with id=in_id.
- *
- * @param int $id
- * @param int $courseId
- *
- * @return TestCategory
- */
- public function getCategory($id, $courseId = 0)
- {
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $id = (int) $id;
- $courseId = empty($courseId) ? api_get_course_int_id() : (int) $courseId;
- $sql = "SELECT * FROM $table
- WHERE id = $id AND c_id = ".$courseId;
- $res = Database::query($sql);
- if (Database::num_rows($res)) {
- $row = Database::fetch_array($res);
- $this->id = $row['id'];
- $this->name = $row['title'];
- $this->description = $row['description'];
- return $this;
- }
- return false;
- }
- /**
- * Save TestCategory in the database if name doesn't exists.
- *
- * @param int $courseId
- *
- * @return bool
- */
- public function save($courseId = 0)
- {
- $courseId = empty($courseId) ? api_get_course_int_id() : (int) $courseId;
- $courseInfo = api_get_course_info_by_id($courseId);
- if (empty($courseInfo)) {
- return false;
- }
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- // check if name already exists
- $sql = "SELECT count(*) AS nb FROM $table
- WHERE title = '".Database::escape_string($this->name)."' AND c_id = $courseId";
- $result = Database::query($sql);
- $row = Database::fetch_array($result);
- // lets add in BDD if not the same name
- if ($row['nb'] <= 0) {
- $params = [
- 'c_id' => $courseId,
- 'title' => $this->name,
- 'description' => $this->description,
- ];
- $newId = Database::insert($table, $params);
- if ($newId) {
- $sql = "UPDATE $table SET id = iid WHERE iid = $newId";
- Database::query($sql);
- api_item_property_update(
- $courseInfo,
- TOOL_TEST_CATEGORY,
- $newId,
- 'TestCategoryAdded',
- api_get_user_id()
- );
- }
- return $newId;
- } else {
- return false;
- }
- }
- /**
- * Removes the category from the database
- * if there were question in this category, the link between question and category is removed.
- *
- * @param int $id
- *
- * @return bool
- */
- public function removeCategory($id)
- {
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $tbl_question_rel_cat = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY);
- $id = (int) $id;
- $course_id = api_get_course_int_id();
- $category = $this->getCategory($id);
- if ($category) {
- $sql = "DELETE FROM $table
- WHERE id= $id AND c_id=".$course_id;
- Database::query($sql);
- // remove link between question and category
- $sql = "DELETE FROM $tbl_question_rel_cat
- WHERE category_id = $id AND c_id=".$course_id;
- Database::query($sql);
- // item_property update
- $courseInfo = api_get_course_info_by_id($course_id);
- api_item_property_update(
- $courseInfo,
- TOOL_TEST_CATEGORY,
- $this->id,
- 'TestCategoryDeleted',
- api_get_user_id()
- );
- return true;
- }
- return false;
- }
- /**
- * Modify category name or description of category with id=in_id.
- *
- * @param int $courseId
- *
- * @return bool
- */
- public function modifyCategory($courseId = 0)
- {
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $id = intval($this->id);
- $name = Database::escape_string($this->name);
- $description = Database::escape_string($this->description);
- $cat = $this->getCategory($id, $courseId);
- $courseId = empty($courseId) ? api_get_course_int_id() : (int) $courseId;
- $courseInfo = api_get_course_info_by_id($courseId);
- if (empty($courseInfo)) {
- return false;
- }
- if ($cat) {
- $sql = "UPDATE $table SET
- title = '$name',
- description = '$description'
- WHERE id = $id AND c_id = ".$courseId;
- Database::query($sql);
- // item_property update
- api_item_property_update(
- $courseInfo,
- TOOL_TEST_CATEGORY,
- $this->id,
- 'TestCategoryModified',
- api_get_user_id()
- );
- return true;
- }
- return false;
- }
- /**
- * Gets the number of question of category id=in_id.
- */
- public function getCategoryQuestionsNumber()
- {
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY);
- $id = (int) $this->id;
- $sql = "SELECT count(*) AS nb
- FROM $table
- WHERE category_id = $id AND c_id=".api_get_course_int_id();
- $res = Database::query($sql);
- $row = Database::fetch_array($res);
- return $row['nb'];
- }
- /**
- * Return an array of all Category objects in the database
- * If $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).
- *
- * @param string $field
- * @param int $courseId
- *
- * @return array
- */
- public static function getCategoryListInfo($field = '', $courseId = 0)
- {
- $courseId = empty($courseId) ? api_get_course_int_id() : (int) $courseId;
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $categories = [];
- if (empty($field)) {
- $sql = "SELECT id FROM $table
- WHERE c_id = $courseId
- ORDER BY title ASC";
- $res = Database::query($sql);
- while ($row = Database::fetch_array($res)) {
- $category = new TestCategory();
- $categories[] = $category->getCategory($row['id'], $courseId);
- }
- } else {
- $field = Database::escape_string($field);
- $sql = "SELECT $field FROM $table
- WHERE c_id = $courseId
- ORDER BY $field ASC";
- $res = Database::query($sql);
- while ($row = Database::fetch_array($res)) {
- $categories[] = $row[$field];
- }
- }
- return $categories;
- }
- /**
- * Return the TestCategory id for question with question_id = $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 = 0)
- {
- $courseId = (int) $courseId;
- $questionId = (int) $questionId;
- if (empty($courseId)) {
- $courseId = api_get_course_int_id();
- }
- if (empty($courseId) || empty($questionId)) {
- return 0;
- }
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY);
- $sql = "SELECT category_id
- FROM $table
- WHERE question_id = $questionId AND c_id = $courseId";
- $res = Database::query($sql);
- $result = 0;
- if (Database::num_rows($res) > 0) {
- $data = Database::fetch_array($res);
- $result = (int) $data['category_id'];
- }
- return $result;
- }
- /**
- * Return the category name for question with question_id = $questionId
- * In this version, a question has only 1 category.
- *
- * @param $questionId
- * @param int $courseId
- *
- * @return string
- */
- public static function getCategoryNameForQuestion($questionId, $courseId = 0)
- {
- if (empty($courseId)) {
- $courseId = api_get_course_int_id();
- }
- $courseId = (int) $courseId;
- $categoryId = self::getCategoryForQuestion($questionId, $courseId);
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $sql = "SELECT title
- FROM $table
- WHERE id = $categoryId AND c_id = $courseId";
- $res = Database::query($sql);
- $data = Database::fetch_array($res);
- $result = '';
- 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.
- *
- * @param int $exerciseId
- * @param int $courseId
- *
- * @return array
- */
- public static function getListOfCategoriesIDForTest($exerciseId, $courseId = 0)
- {
- // parcourir les questions d'un test, recup les categories uniques dans un tableau
- $exercise = new Exercise($courseId);
- $exercise->read($exerciseId, false);
- $categoriesInExercise = $exercise->getQuestionWithCategories();
- // the array given by selectQuestionList start at indice 1 and not at indice 0 !!! ???
- $categories = [];
- if (!empty($categoriesInExercise)) {
- foreach ($categoriesInExercise as $category) {
- $categories[$category['id']] = $category;
- }
- }
- return $categories;
- }
- /**
- * @param Exercise $exercise
- *
- * @return array
- */
- public static function getListOfCategoriesIDForTestObject(Exercise $exercise)
- {
- // parcourir les questions d'un test, recup les categories uniques dans un tableau
- $categories_in_exercise = [];
- $question_list = $exercise->getQuestionOrderedListByName();
- // the array given by selectQuestionList start at indice 1 and not at indice 0 !!! ???
- foreach ($question_list as $questionInfo) {
- $question_id = $questionInfo['question_id'];
- $category_list = self::getCategoryForQuestion($question_id);
- if (is_numeric($category_list)) {
- $category_list = [$category_list];
- }
- if (!empty($category_list)) {
- $categories_in_exercise = array_merge($categories_in_exercise, $category_list);
- }
- }
- if (!empty($categories_in_exercise)) {
- $categories_in_exercise = array_unique(array_filter($categories_in_exercise));
- }
- return $categories_in_exercise;
- }
- /**
- * Return the list of different categories NAME for a test.
- *
- * @param int $exerciseId
- * @param bool
- *
- * @return array
- *
- * @author function rewrote by jmontoya
- */
- public static function getListOfCategoriesNameForTest($exerciseId, $grouped_by_category = true)
- {
- $result = [];
- $categories = self::getListOfCategoriesIDForTest($exerciseId);
- foreach ($categories as $catInfo) {
- $categoryId = $catInfo['id'];
- if (!empty($categoryId)) {
- $result[$categoryId] = [
- 'title' => $catInfo['title'],
- //'parent_id' => $catInfo['parent_id'],
- 'parent_id' => '',
- 'c_id' => $catInfo['c_id'],
- ];
- }
- }
- return $result;
- }
- /**
- * @param Exercise $exercise
- *
- * @return array
- */
- public static function getListOfCategoriesForTest(Exercise $exercise)
- {
- $result = [];
- $categories = self::getListOfCategoriesIDForTestObject($exercise);
- foreach ($categories as $cat_id) {
- $cat = new TestCategory();
- $cat = (array) $cat->getCategory($cat_id);
- $cat['iid'] = $cat['id'];
- $cat['title'] = $cat['name'];
- $result[$cat['id']] = $cat;
- }
- return $result;
- }
- /**
- * return the number of question of a category id in a test.
- *
- * @param int $exerciseId
- * @param int $categoryId
- *
- * @return int
- *
- * @author hubert.borderiou 07-04-2011
- */
- public static function getNumberOfQuestionsInCategoryForTest($exerciseId, $categoryId)
- {
- $nbCatResult = 0;
- $quiz = new Exercise();
- $quiz->read($exerciseId);
- $questionList = $quiz->selectQuestionList();
- // the array given by selectQuestionList start at indice 1 and not at indice 0 !!! ? ? ?
- for ($i = 1; $i <= count($questionList); $i++) {
- if (self::getCategoryForQuestion($questionList[$i]) == $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).
- *
- * @param int $exerciseId
- * @param int $random
- *
- * @return int
- * hubert.borderiou 07-04-2011
- * question without categories are not counted
- */
- public static function getNumberOfQuestionRandomByCategory($exerciseId, $random)
- {
- $count = 0;
- $categories = self::getListOfCategoriesIDForTest($exerciseId);
- foreach ($categories as $category) {
- if (empty($category['id'])) {
- continue;
- }
- $nbQuestionInThisCat = self::getNumberOfQuestionsInCategoryForTest(
- $exerciseId,
- $category['id']
- );
- if ($nbQuestionInThisCat > $random) {
- $count += $random;
- } else {
- $count += $nbQuestionInThisCat;
- }
- }
- return $count;
- }
- /**
- * Return an array (id=>name)
- * array[0] = get_lang('NoCategory');.
- *
- * @param int $courseId
- *
- * @return array
- */
- public static function getCategoriesIdAndName($courseId = 0)
- {
- if (empty($courseId)) {
- $courseId = api_get_course_int_id();
- }
- $categories = self::getCategoryListInfo('', $courseId);
- $result = ['0' => get_lang('GeneralSelected')];
- for ($i = 0; $i < count($categories); $i++) {
- $result[$categories[$i]->id] = $categories[$i]->name;
- }
- return $result;
- }
- /**
- * Returns an array of question ids for each category
- * $categories[1][30] = 10, array with category id = 1 and question_id = 10
- * A question has "n" categories.
- *
- * @param int $exerciseId
- * @param array $check_in_question_list
- * @param array $categoriesAddedInExercise
- *
- * @return array
- */
- public static function getQuestionsByCat(
- $exerciseId,
- $check_in_question_list = [],
- $categoriesAddedInExercise = []
- ) {
- $tableQuestion = Database::get_course_table(TABLE_QUIZ_QUESTION);
- $TBL_EXERCICE_QUESTION = Database::get_course_table(TABLE_QUIZ_TEST_QUESTION);
- $TBL_QUESTION_REL_CATEGORY = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY);
- $categoryTable = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $exerciseId = (int) $exerciseId;
- $courseId = api_get_course_int_id();
- $sql = "SELECT DISTINCT qrc.question_id, qrc.category_id
- FROM $TBL_QUESTION_REL_CATEGORY qrc
- INNER JOIN $TBL_EXERCICE_QUESTION eq
- ON (eq.question_id = qrc.question_id AND qrc.c_id = eq.c_id)
- INNER JOIN $categoryTable c
- ON (c.id = qrc.category_id AND c.c_id = eq.c_id)
- INNER JOIN $tableQuestion q
- ON (q.id = qrc.question_id AND q.c_id = eq.c_id)
- WHERE
- exercice_id = $exerciseId AND
- qrc.c_id = $courseId
- ";
- $res = Database::query($sql);
- $categories = [];
- while ($data = Database::fetch_array($res)) {
- if (!empty($check_in_question_list)) {
- if (!in_array($data['question_id'], $check_in_question_list)) {
- continue;
- }
- }
- if (!isset($categories[$data['category_id']]) ||
- !is_array($categories[$data['category_id']])
- ) {
- $categories[$data['category_id']] = [];
- }
- $categories[$data['category_id']][] = $data['question_id'];
- }
- if (!empty($categoriesAddedInExercise)) {
- $newCategoryList = [];
- foreach ($categoriesAddedInExercise as $category) {
- $categoryId = $category['category_id'];
- if (isset($categories[$categoryId])) {
- $newCategoryList[$categoryId] = $categories[$categoryId];
- }
- }
- $checkQuestionsWithNoCategory = false;
- foreach ($categoriesAddedInExercise as $category) {
- if (empty($category['category_id'])) {
- // Check
- $checkQuestionsWithNoCategory = true;
- break;
- }
- }
- // Select questions that don't have any category related
- if ($checkQuestionsWithNoCategory) {
- $originalQuestionList = $check_in_question_list;
- foreach ($originalQuestionList as $questionId) {
- $categoriesFlatten = array_flatten($categories);
- if (!in_array($questionId, $categoriesFlatten)) {
- $newCategoryList[0][] = $questionId;
- }
- }
- }
- $categories = $newCategoryList;
- }
- return $categories;
- }
- /**
- * Returns an array of $numberElements from $array.
- *
- * @param array
- * @param int
- *
- * @return array
- */
- public static function getNElementsFromArray($array, $numberElements)
- {
- $list = $array;
- shuffle($list);
- if ($numberElements < count($list)) {
- $list = array_slice($list, 0, $numberElements);
- }
- return $list;
- }
- /**
- * @param int $questionId
- * @param int $displayCategoryName
- */
- public static function displayCategoryAndTitle($questionId, $displayCategoryName = 1)
- {
- echo self::returnCategoryAndTitle($questionId, $displayCategoryName);
- }
- /**
- * @param int $questionId
- * @param int $in_display_category_name
- *
- * @return string|null
- */
- public static function returnCategoryAndTitle($questionId, $in_display_category_name = 1)
- {
- $is_student = !(api_is_allowed_to_edit(null, true) || api_is_session_admin());
- $objExercise = Session::read('objExercise');
- if (!empty($objExercise)) {
- $in_display_category_name = $objExercise->display_category_name;
- }
- $content = null;
- if (self::getCategoryNameForQuestion($questionId) != '' &&
- ($in_display_category_name == 1 || !$is_student)
- ) {
- $content .= '<div class="page-header">';
- $content .= '<h4>'.get_lang('Category').": ".self::getCategoryNameForQuestion($questionId).'</h4>';
- $content .= "</div>";
- }
- return $content;
- }
- /**
- * sortTabByBracketLabel ($tabCategoryQuestions)
- * key of $tabCategoryQuestions are the category id (0 for not in a category)
- * value is the array of question id of this category
- * Sort question by Category.
- */
- public static function sortTabByBracketLabel($in_tab)
- {
- $tabResult = [];
- $tabCatName = []; // tab of category name
- foreach ($in_tab as $cat_id => $tabquestion) {
- $category = new TestCategory();
- $category = $category->getCategory($cat_id);
- $tabCatName[$cat_id] = $category->name;
- }
- reset($in_tab);
- // sort table by value, keeping keys as they are
- asort($tabCatName);
- // keys of $tabCatName are keys order for $in_tab
- foreach ($tabCatName as $key => $val) {
- $tabResult[$key] = $in_tab[$key];
- }
- return $tabResult;
- }
- /**
- * Return the number max of question in a category
- * count the number of questions in all categories, and return the max.
- *
- * @param int $exerciseId
- *
- * @author - hubert borderiou
- *
- * @return int
- */
- public static function getNumberMaxQuestionByCat($exerciseId)
- {
- $res_num_max = 0;
- // foreach question
- $categories = self::getListOfCategoriesIDForTest($exerciseId);
- foreach ($categories as $category) {
- if (empty($category['id'])) {
- continue;
- }
- $nbQuestionInThisCat = self::getNumberOfQuestionsInCategoryForTest(
- $exerciseId,
- $category['id']
- );
- if ($nbQuestionInThisCat > $res_num_max) {
- $res_num_max = $nbQuestionInThisCat;
- }
- }
- return $res_num_max;
- }
- /**
- * Returns a category summary report.
- *
- * @param int $exerciseId
- * @param array $category_list
- * pre filled array with the category_id, score, and weight
- * example: array(1 => array('score' => '10', 'total' => 20));
- *
- * @return string
- */
- public static function get_stats_table_by_attempt(
- $exerciseId,
- $category_list = []
- ) {
- if (empty($category_list)) {
- return null;
- }
- $category_name_list = self::getListOfCategoriesNameForTest($exerciseId);
- $table = new HTML_Table(['class' => 'table table-bordered', 'id' => 'category_results']);
- $table->setHeaderContents(0, 0, get_lang('Categories'));
- $table->setHeaderContents(0, 1, get_lang('Absolute score'));
- $table->setHeaderContents(0, 2, get_lang('Relative score'));
- $row = 1;
- $none_category = [];
- if (isset($category_list['none'])) {
- $none_category = $category_list['none'];
- unset($category_list['none']);
- }
- $total = [];
- if (isset($category_list['total'])) {
- $total = $category_list['total'];
- unset($category_list['total']);
- }
- if (count($category_list) > 1) {
- foreach ($category_list as $category_id => $category_item) {
- $table->setCellContents($row, 0, $category_name_list[$category_id]);
- $table->setCellContents(
- $row,
- 1,
- ExerciseLib::show_score(
- $category_item['score'],
- $category_item['total'],
- false
- )
- );
- $table->setCellContents(
- $row,
- 2,
- ExerciseLib::show_score(
- $category_item['score'],
- $category_item['total'],
- true,
- false,
- true
- )
- );
- $row++;
- }
- if (!empty($none_category)) {
- $table->setCellContents($row, 0, get_lang('none'));
- $table->setCellContents(
- $row,
- 1,
- ExerciseLib::show_score(
- $none_category['score'],
- $none_category['total'],
- false
- )
- );
- $table->setCellContents(
- $row,
- 2,
- ExerciseLib::show_score(
- $none_category['score'],
- $none_category['total'],
- true,
- false,
- true
- )
- );
- $row++;
- }
- if (!empty($total)) {
- $table->setCellContents($row, 0, get_lang('Total'));
- $table->setCellContents(
- $row,
- 1,
- ExerciseLib::show_score(
- $total['score'],
- $total['total'],
- false
- )
- );
- $table->setCellContents(
- $row,
- 2,
- ExerciseLib::show_score(
- $total['score'],
- $total['total'],
- true,
- false,
- true
- )
- );
- }
- return $table->toHtml();
- }
- return '';
- }
- /**
- * @param Exercise $exercise
- * @param int $courseId
- * @param string $order
- * @param bool $shuffle
- * @param bool $excludeCategoryWithNoQuestions
- *
- * @return array
- */
- public function getCategoryExerciseTree(
- $exercise,
- $courseId,
- $order = null,
- $shuffle = false,
- $excludeCategoryWithNoQuestions = true
- ) {
- if (empty($exercise)) {
- return [];
- }
- $courseId = (int) $courseId;
- $table = Database::get_course_table(TABLE_QUIZ_REL_CATEGORY);
- $categoryTable = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $exercise->id = (int) $exercise->id;
- $sql = "SELECT * FROM $table qc
- LEFT JOIN $categoryTable c
- ON (qc.c_id = c.c_id AND c.id = qc.category_id)
- WHERE qc.c_id = $courseId AND exercise_id = {$exercise->id} ";
- if (!empty($order)) {
- $order = Database::escape_string($order);
- $sql .= "ORDER BY $order";
- }
- $categories = [];
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- while ($row = Database::fetch_array($result, 'ASSOC')) {
- if ($excludeCategoryWithNoQuestions) {
- if ($row['count_questions'] == 0) {
- continue;
- }
- }
- if (empty($row['title']) && empty($row['category_id'])) {
- $row['title'] = get_lang('General');
- }
- $categories[$row['category_id']] = $row;
- }
- }
- if ($shuffle) {
- shuffle_assoc($categories);
- }
- return $categories;
- }
- /**
- * @param FormValidator $form
- * @param string $action
- */
- public function getForm(&$form, $action = 'new')
- {
- switch ($action) {
- case 'new':
- $header = get_lang('Add category');
- $submit = get_lang('Add test category');
- break;
- case 'edit':
- $header = get_lang('Edit this category');
- $submit = get_lang('Edit category');
- break;
- }
- // Setting the form elements
- $form->addElement('header', $header);
- $form->addElement('hidden', 'category_id');
- $form->addElement(
- 'text',
- 'category_name',
- get_lang('Category name'),
- ['class' => 'span6']
- );
- $form->add_html_editor(
- 'category_description',
- get_lang('Category description'),
- false,
- false,
- [
- 'ToolbarSet' => 'test_category',
- 'Width' => '90%',
- 'Height' => '200',
- ]
- );
- $category_parent_list = [];
- $options = [
- '1' => get_lang('Visible'),
- '0' => get_lang('Hidden'),
- ];
- $form->addElement(
- 'select',
- 'visibility',
- get_lang('Visibility'),
- $options
- );
- $script = null;
- if (!empty($this->parent_id)) {
- $parent_cat = new TestCategory();
- $parent_cat = $parent_cat->getCategory($this->parent_id);
- $category_parent_list = [$parent_cat->id => $parent_cat->name];
- $script .= '<script>$(function() { $("#parent_id").trigger("addItem",[{"title": "'.$parent_cat->name.'", "value": "'.$parent_cat->id.'"}]); });</script>';
- }
- $form->addElement('html', $script);
- $form->addElement('select', 'parent_id', get_lang('Parent'), $category_parent_list, ['id' => 'parent_id']);
- $form->addElement('style_submit_button', 'SubmitNote', $submit, 'class="add"');
- // setting the defaults
- $defaults = [];
- $defaults["category_id"] = $this->id;
- $defaults["category_name"] = $this->name;
- $defaults["category_description"] = $this->description;
- $defaults["parent_id"] = $this->parent_id;
- $defaults["visibility"] = $this->visibility;
- $form->setDefaults($defaults);
- // setting the rules
- $form->addRule('category_name', get_lang('Required field'), 'required');
- }
- /**
- * Returns the category form.
- *
- * @param Exercise $exercise
- *
- * @return string
- */
- public function returnCategoryForm(Exercise $exercise)
- {
- $categories = $this->getListOfCategoriesForTest($exercise);
- $saved_categories = $exercise->getCategoriesInExercise();
- $return = null;
- if (!empty($categories)) {
- $nbQuestionsTotal = $exercise->getNumberQuestionExerciseCategory();
- $exercise->setCategoriesGrouping(true);
- $real_question_count = count($exercise->getQuestionList());
- $warning = null;
- if ($nbQuestionsTotal != $real_question_count) {
- $warning = Display::return_message(
- get_lang('Make sure you have enough questions in your categories.'),
- 'warning'
- );
- }
- $return .= $warning;
- $return .= '<table class="data_table">';
- $return .= '<tr>';
- $return .= '<th height="24">'.get_lang('Categories').'</th>';
- $return .= '<th width="70" height="24">'.get_lang('N°').'</th></tr>';
- $emptyCategory = [
- 'id' => '0',
- 'name' => get_lang('General'),
- 'description' => '',
- 'iid' => '0',
- 'title' => get_lang('General'),
- ];
- $categories[] = $emptyCategory;
- foreach ($categories as $category) {
- $cat_id = $category['iid'];
- $return .= '<tr>';
- $return .= '<td>';
- $return .= Display::div($category['name']);
- $return .= '</td>';
- $return .= '<td>';
- $value = isset($saved_categories) && isset($saved_categories[$cat_id]) ? $saved_categories[$cat_id]['count_questions'] : -1;
- $return .= '<input name="category['.$cat_id.']" value="'.$value.'" />';
- $return .= '</td>';
- $return .= '</tr>';
- }
- $return .= '</table>';
- $return .= get_lang('-1 = All questions will be selected.');
- }
- return $return;
- }
- /**
- * Return true if a category already exists with the same name.
- *
- * @param string $name
- * @param int $courseId
- *
- * @return bool
- */
- public static function categoryTitleExists($name, $courseId = 0)
- {
- $categories = self::getCategoryListInfo('title', $courseId);
- foreach ($categories as $title) {
- if ($title == $name) {
- return true;
- }
- }
- return false;
- }
- /**
- * Return the id of the test category with title = $in_title.
- *
- * @param string $title
- * @param int $courseId
- *
- * @return int is id of test category
- */
- public static function get_category_id_for_title($title, $courseId = 0)
- {
- $out_res = 0;
- if (empty($courseId)) {
- $courseId = api_get_course_int_id();
- }
- $courseId = (int) $courseId;
- $tbl_cat = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $sql = "SELECT id FROM $tbl_cat
- WHERE c_id = $courseId AND title = '".Database::escape_string($title)."'";
- $res = Database::query($sql);
- if (Database::num_rows($res) > 0) {
- $data = Database::fetch_array($res);
- $out_res = $data['id'];
- }
- return $out_res;
- }
- /**
- * Add a relation between question and category in table c_quiz_question_rel_category.
- *
- * @param int $categoryId
- * @param int $questionId
- * @param int $courseId
- *
- * @return string|false
- */
- public static function addCategoryToQuestion($categoryId, $questionId, $courseId)
- {
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_REL_CATEGORY);
- // if question doesn't have a category
- // @todo change for 1.10 when a question can have several categories
- if (self::getCategoryForQuestion($questionId, $courseId) == 0 &&
- $questionId > 0 &&
- $courseId > 0
- ) {
- $sql = "INSERT INTO $table (c_id, question_id, category_id)
- VALUES (".intval($courseId).", ".intval($questionId).", ".intval($categoryId).")";
- Database::query($sql);
- $id = Database::insert_id();
- return $id;
- }
- return false;
- }
- /**
- * @param int $courseId
- * @param int $sessionId
- *
- * @return array
- */
- public function getCategories($courseId, $sessionId = 0)
- {
- $table = Database::get_course_table(TABLE_QUIZ_QUESTION_CATEGORY);
- $itemProperty = Database::get_course_table(TABLE_ITEM_PROPERTY);
- $sessionId = intval($sessionId);
- $courseId = intval($courseId);
- if (empty($sessionId)) {
- $sessionCondition = api_get_session_condition(
- $sessionId,
- true,
- false,
- 'i.session_id'
- );
- } else {
- $sessionCondition = api_get_session_condition(
- $sessionId,
- true,
- true,
- 'i.session_id'
- );
- }
- if (empty($courseId)) {
- return [];
- }
- $sql = "SELECT c.* FROM $table c
- INNER JOIN $itemProperty i
- ON c.c_id = i.c_id AND i.ref = c.id
- WHERE
- c.c_id = $courseId AND
- i.tool = '".TOOL_TEST_CATEGORY."'
- $sessionCondition
- ORDER BY title";
- $result = Database::query($sql);
- return Database::store_result($result, 'ASSOC');
- }
- /**
- * @param int $courseId
- * @param int $sessionId
- *
- * @return string
- */
- public function displayCategories($courseId, $sessionId = 0)
- {
- $sessionId = (int) $sessionId;
- $categories = $this->getCategories($courseId, $sessionId);
- $html = '';
- foreach ($categories as $category) {
- $tmpobj = new TestCategory();
- $tmpobj = $tmpobj->getCategory($category['id']);
- $nb_question = $tmpobj->getCategoryQuestionsNumber();
- $rowname = self::protectJSDialogQuote($category['title']);
- $nb_question_label = $nb_question == 1 ? $nb_question.' '.get_lang('Question') : $nb_question.' '.get_lang('Questions');
- $content = "<span style='float:right'>".$nb_question_label."</span>";
- $content .= '<div class="sectioncomment">';
- $content .= $category['description'];
- $content .= '</div>';
- $links = '';
- if (!$sessionId) {
- $links .= '<a href="'.api_get_self().'?action=editcategory&category_id='.$category['id'].'&'.api_get_cidreq().'">'.
- Display::return_icon('edit.png', get_lang('Edit'), [], ICON_SIZE_SMALL).'</a>';
- $links .= ' <a href="'.api_get_self().'?'.api_get_cidreq().'&action=deletecategory&category_id='.$category['id'].'" ';
- $links .= 'onclick="return confirmDelete(\''.self::protectJSDialogQuote(get_lang('Are you sure you want to delete this category?').'['.$rowname).'] ?\', \'id_cat'.$category['id'].'\');">';
- $links .= Display::return_icon('delete.png', get_lang('Delete'), [], ICON_SIZE_SMALL).'</a>';
- }
- $html .= Display::panel($content, $category['title'].$links);
- }
- return $html;
- }
- /**
- * To allowed " in javascript dialog box without bad surprises
- * replace " with two '.
- *
- * @param string $text
- *
- * @return mixed
- */
- public function protectJSDialogQuote($text)
- {
- $res = $text;
- $res = str_replace("'", "\'", $res);
- // super astuce pour afficher les " dans les boite de dialogue
- $res = str_replace('"', "\'\'", $res);
- return $res;
- }
- }
|