read($fromExercise, false);
}
$nameTools = get_lang('QuestionPool');
$interbreadcrumb[] = ['url' => 'exercise.php?'.api_get_cidreq(), 'name' => get_lang('Exercises')];
if (!empty($objExercise->id)) {
$interbreadcrumb[] = [
'url' => 'admin.php?exerciseId='.$objExercise->id.'&'.api_get_cidreq(),
'name' => $objExercise->selectTitle(true),
];
}
// message to be displayed if actions successful
$displayMessage = '';
if ($is_allowedToEdit) {
// Duplicating a Question
if (!isset($_POST['recup']) && $question_copy != 0 && isset($fromExercise)) {
$origin_course_id = (int) $_GET['course_id'];
$origin_course_info = api_get_course_info_by_id($origin_course_id);
$current_course = api_get_course_info();
$old_question_id = $question_copy;
// Reading the source question
$old_question_obj = Question::read($old_question_id, $origin_course_info);
$courseId = $current_course['real_id'];
if ($old_question_obj) {
$old_question_obj->updateTitle($old_question_obj->selectTitle().' - '.get_lang('Copy'));
//Duplicating the source question, in the current course
$new_id = $old_question_obj->duplicate($current_course);
//Reading new question
$new_question_obj = Question::read($new_id);
$new_question_obj->addToList($fromExercise);
//Reading Answers obj of the current course
$new_answer_obj = new Answer($old_question_id, $origin_course_id);
$new_answer_obj->read();
//Duplicating the Answers in the current course
$new_answer_obj->duplicate($new_question_obj, $current_course);
// destruction of the Question object
unset($new_question_obj);
unset($old_question_obj);
$objExercise = new Exercise($courseId);
$objExercise->read($fromExercise);
Session::write('objExercise', $objExercise);
}
$displayMessage = get_lang('ItemAdded');
}
// Deletes a question from the database and all exercises
if ($delete) {
$limitTeacherAccess = api_get_configuration_value('limit_exercise_teacher_access');
if ($limitTeacherAccess && !api_is_platform_admin()) {
api_not_allowed(true);
}
// Construction of the Question object
$objQuestionTmp = Question::read($delete);
// if the question exists
if ($objQuestionTmp) {
// deletes the question from all exercises
$objQuestionTmp->delete();
}
// destruction of the Question object
unset($objQuestionTmp);
} elseif ($recup && $fromExercise) {
// gets an existing question and copies it into a new exercise
$objQuestionTmp = Question::read($recup);
// if the question exists
if ($objQuestionTmp) {
/* Adds the exercise ID represented by $fromExercise into the list
of exercises for the current question */
$objQuestionTmp->addToList($fromExercise);
}
// destruction of the Question object
unset($objQuestionTmp);
if (!$objExercise instanceof Exercise) {
$objExercise = new Exercise();
$objExercise->read($fromExercise);
}
// Adds the question ID represented by $recup into the list of questions for the current exercise
$objExercise->addToList($recup);
Session::write('objExercise', $objExercise);
Display::addFlash(Display::return_message(get_lang('ItemAdded'), 'success'));
} elseif (isset($_POST['recup']) && is_array($_POST['recup']) && $fromExercise) {
$list_recup = $_POST['recup'];
foreach ($list_recup as $course_id => $question_data) {
$origin_course_id = (int) $course_id;
$origin_course_info = api_get_course_info_by_id($origin_course_id);
$current_course = api_get_course_info();
foreach ($question_data as $old_question_id) {
// Reading the source question
$old_question_obj = Question::read($old_question_id, $origin_course_info);
if ($old_question_obj) {
$old_question_obj->updateTitle(
$old_question_obj->selectTitle().' - '.get_lang('Copy')
);
// Duplicating the source question, in the current course
$new_id = $old_question_obj->duplicate($current_course);
// Reading new question
$new_question_obj = Question::read($new_id);
$new_question_obj->addToList($fromExercise);
//Reading Answers obj of the current course
$new_answer_obj = new Answer($old_question_id, $origin_course_id);
$new_answer_obj->read();
//Duplicating the Answers in the current course
$new_answer_obj->duplicate($new_question_obj, $current_course);
// destruction of the Question object
unset($new_question_obj);
unset($old_question_obj);
if (!$objExercise instanceof Exercise) {
$objExercise = new Exercise();
$objExercise->read($fromExercise);
}
}
}
}
Session::write('objExercise', $objExercise);
}
}
if (api_is_in_gradebook()) {
$interbreadcrumb[] = [
'url' => Category::getUrl(),
'name' => get_lang('ToolGradebook'),
];
}
// if admin of course
if (!$is_allowedToEdit) {
api_not_allowed(true);
}
$confirmYourChoice = addslashes(api_htmlentities(get_lang('ConfirmYourChoice'), ENT_QUOTES, $charset));
$htmlHeadXtra[] = "
";
$url = api_get_self().'?'.api_get_cidreq().'&'.http_build_query(
[
'fromExercise' => $fromExercise,
'session_id' => $session_id,
'selected_course' => $selected_course,
'courseCategoryId' => $courseCategoryId,
'exerciseId' => $exerciseId,
'exerciseLevel' => $exerciseLevel,
'answerType' => $answerType,
'question_id' => $questionId,
'description' => Security::remove_XSS($description),
'course_id_changed' => $course_id_changed,
'exercise_id_changed' => $exercise_id_changed,
]
);
if (isset($_REQUEST['action'])) {
switch ($_REQUEST['action']) {
case 'reuse':
if (!empty($_REQUEST['questions']) && !empty($fromExercise)) {
$questions = $_REQUEST['questions'];
$objExercise = new Exercise();
$objExercise->read($fromExercise, false);
if (count($questions) > 0) {
foreach ($questions as $questionId) {
// gets an existing question and copies it into a new exercise
$objQuestionTmp = Question::read($questionId);
// if the question exists
if ($objQuestionTmp) {
if ($objExercise->hasQuestion($questionId) === false) {
$objExercise->addToList($questionId);
$objQuestionTmp->addToList($fromExercise);
}
}
}
}
Display::addFlash(Display::return_message(get_lang('Added')));
header('Location: '.$url);
exit;
}
break;
case 'clone':
if (!empty($_REQUEST['questions']) && !empty($fromExercise)) {
$questions = $_REQUEST['questions'];
$objExercise = new Exercise();
$objExercise->read($fromExercise, false);
$origin_course_id = (int) $_GET['course_id'];
$origin_course_info = api_get_course_info_by_id($origin_course_id);
$current_course = api_get_course_info();
if (count($questions) > 0) {
foreach ($questions as $questionId) {
// gets an existing question and copies it into a new exercise
// Reading the source question
$old_question_obj = Question::read($questionId, $origin_course_info);
$courseId = $current_course['real_id'];
if ($old_question_obj) {
$old_question_obj->updateTitle($old_question_obj->selectTitle().' - '.get_lang('Copy'));
// Duplicating the source question, in the current course
$new_id = $old_question_obj->duplicate($current_course);
// Reading new question
$new_question_obj = Question::read($new_id);
$new_question_obj->addToList($fromExercise);
//Reading Answers obj of the current course
$new_answer_obj = new Answer($old_question_id, $origin_course_id);
$new_answer_obj->read();
//Duplicating the Answers in the current course
$new_answer_obj->duplicate($new_question_obj, $current_course);
// destruction of the Question object
unset($new_question_obj);
unset($old_question_obj);
}
}
}
Display::addFlash(Display::return_message(get_lang('Added')));
header('Location: '.$url);
exit;
}
break;
}
}
Display::display_header($nameTools, 'Exercise');
// Menu
echo '
';
if ($displayMessage != '') {
echo Display::return_message($displayMessage, 'confirm');
}
// Form
echo '
0) {
$where = '';
$from = '';
if (isset($courseCategoryId) && $courseCategoryId > 0) {
$from = ", $TBL_COURSE_REL_CATEGORY crc ";
$where .= " AND
crc.c_id = $selected_course AND
crc.question_id = qu.id AND
crc.category_id = $courseCategoryId";
}
if (isset($exerciseLevel) && $exerciseLevel != -1) {
$where .= ' AND level='.$exerciseLevel;
}
if (isset($answerType) && $answerType > 0) {
$where .= ' AND type='.$answerType;
}
if (!empty($questionId)) {
$where .= ' AND qu.iid='.$questionId;
}
if (!empty($description)) {
$where .= " AND qu.description LIKE '%$description%'";
}
$select = 'DISTINCT
id,
question,
type,
level,
qt.exercice_id exerciseId';
if ($getCount) {
$select = 'count(qu.iid) as count';
}
$sql = "SELECT $select
FROM
$TBL_EXERCISE_QUESTION qt
INNER JOIN $TBL_QUESTIONS qu
ON qt.question_id = qu.id
$from
WHERE
qt.exercice_id = $exerciseId AND
qt.c_id = $selected_course AND
qu.c_id = $selected_course
$where
$currentExerciseCondition
ORDER BY question_order";
} elseif ($exerciseId == -1) {
// If we have selected the option 'Orphan questions' in the list-box 'Filter'
$level_where = '';
$from = '';
if (isset($courseCategoryId) && $courseCategoryId > 0) {
$from = " INNER JOIN $TBL_COURSE_REL_CATEGORY crc
ON crc.question_id = q.id AND crc.c_id = q.c_id ";
$level_where .= " AND
crc.c_id = $selected_course AND
crc.category_id = $courseCategoryId";
}
if (isset($exerciseLevel) && $exerciseLevel != -1) {
$level_where = ' AND level='.$exerciseLevel;
}
$answer_where = '';
if (isset($answerType) && $answerType > 0 - 1) {
$answer_where = ' AND type='.$answerType;
}
if (!empty($questionId)) {
$answer_where .= ' AND q.iid='.$questionId;
}
if (!empty($description)) {
$answer_where .= " AND q.description LIKE '%$description%'";
}
$select = ' q.*, r.exercice_id exerciseId ';
if ($getCount) {
$select = 'count(q.iid) as count';
}
// @todo fix this query with the new id field
$sql = " (
SELECT $select
FROM $TBL_QUESTIONS q
INNER JOIN $TBL_EXERCISE_QUESTION r
ON (q.c_id = r.c_id AND q.id = r.question_id)
INNER JOIN $TBL_EXERCISES ex
ON (ex.id = r.exercice_id AND ex.c_id = r.c_id)
$from
WHERE
ex.c_id = '$selected_course' AND
ex.active = '-1'
$level_where
$answer_where
)
UNION
(
SELECT $select
FROM $TBL_QUESTIONS q
LEFT OUTER JOIN $TBL_EXERCISE_QUESTION r
ON (q.c_id = r.c_id AND q.id = r.question_id)
$from
WHERE
q.c_id = '$selected_course' AND
r.question_id is null
$level_where
$answer_where
)
UNION
(
SELECT $select
FROM $TBL_QUESTIONS q
INNER JOIN $TBL_EXERCISE_QUESTION r
ON (q.c_id = r.c_id AND q.id = r.question_id)
$from
WHERE
r.c_id = '$selected_course' AND
(r.exercice_id = '-1' OR r.exercice_id = '0')
$level_where
$answer_where
)
";
if ($getCount) {
$sql = "SELECT SUM(count) count FROM ($sql) as total";
}
} else {
// All tests for selected course
// If we have not selected any option in the list-box 'Filter'
$filter = '';
$from = '';
if (isset($courseCategoryId) && $courseCategoryId > 0) {
$from = ", $TBL_COURSE_REL_CATEGORY crc ";
$filter .= " AND
crc.c_id = $selected_course AND
crc.question_id = qu.id AND
crc.category_id = $courseCategoryId";
}
if (isset($exerciseLevel) && $exerciseLevel != -1) {
$filter .= ' AND level='.$exerciseLevel.' ';
}
if (isset($answerType) && $answerType > 0) {
$filter .= ' AND qu.type='.$answerType.' ';
}
if (!empty($questionId)) {
$filter .= ' AND qu.iid='.$questionId;
}
if (!empty($description)) {
$filter .= " AND qu.description LIKE '%$description%'";
}
if ($session_id == -1 || empty($session_id)) {
$session_id = 0;
}
$sessionCondition = api_get_session_condition($session_id, true, 'q.session_id');
$select = 'qu.id, question, qu.type, level, q.session_id, qt.exercice_id exerciseId ';
if ($getCount) {
$select = 'count(qu.iid) as count';
}
// All tests for the course selected, not in session
$sql = "SELECT DISTINCT
$select
FROM
$TBL_QUESTIONS as qu,
$TBL_EXERCISE_QUESTION as qt,
$TBL_EXERCISES as q
$from
WHERE
qu.c_id = $selected_course AND
qt.c_id = $selected_course AND
q.c_id = $selected_course AND
qu.id = qt.question_id
$sessionCondition AND
q.id = qt.exercice_id
$filter
$currentExerciseCondition
GROUP BY qu.iid
ORDER BY session_id ASC
";
}
if ($getCount) {
$result = Database::query($sql);
$row = Database::fetch_array($result, 'ASSOC');
return (int) $row['count'];
}
$sql .= " LIMIT $start, $length";
$result = Database::query($sql);
$mainQuestionList = [];
while ($row = Database::fetch_array($result, 'ASSOC')) {
$mainQuestionList[] = $row;
}
return $mainQuestionList;
}
$nbrQuestions = getQuestions(
true,
null,
null,
$exerciseId,
$courseCategoryId,
$selected_course,
$session_id,
$exerciseLevel,
$answerType,
$questionId,
$description,
$fromExercise
);
$length = api_get_configuration_value('question_pagination_length');
if (empty($length)) {
$length = 20;
}
$start = ($page - 1) * $length;
$paginator = new Paginator();
$pagination = $paginator->paginate([]);
$pagination->setTotalItemCount($nbrQuestions);
$pagination->setItemNumberPerPage($length);
$pagination->setCurrentPageNumber($page);
$pagination->renderer = function ($data) use ($url) {
$render = '';
if ($data['pageCount'] > 1) {
$render = '';
}
return $render;
};
$mainQuestionList = getQuestions(
false,
$start,
$length,
$exerciseId,
$courseCategoryId,
$selected_course,
$session_id,
$exerciseLevel,
$answerType,
$questionId,
$description,
$fromExercise
);
// build the line of the array to display questions
// Actions are different if you launch the question_pool page
// They are different too if you have displayed questions from your course
// Or from another course you are the admin(or session admin)
// from a test or not
/*
+--------------------------------------------+--------------------------------------------+
| NOT IN A TEST | IN A TEST |
+----------------------+---------------------+---------------------+----------------------+
|IN THE COURSE (*) "x | NOT IN THE COURSE o | IN THE COURSE + | NOT IN THE COURSE o |
+----------------------+---------------------+---------------------+----------------------+
|Edit the question | Do nothing | Add question to test|Clone question in test|
|Delete the question | | | |
|(true delete) | | | |
+----------------------+---------------------+---------------------+----------------------+
(*) this is the only way to delete or modify orphan questions
*/
if ($fromExercise <= 0) {
// NOT IN A TEST - NOT IN THE COURSE
$actionLabel = get_lang('Reuse');
$actionIcon1 = get_lang('MustBeInATest');
$actionIcon2 = '';
// We are not in this course, to messy if we link to the question in another course
$questionTagA = 0;
if ($selected_course == api_get_course_int_id()) {
// NOT IN A TEST - IN THE COURSE
$actionLabel = get_lang('Modify');
$actionIcon1 = 'edit';
$actionIcon2 = 'delete';
// We are in the course, question title can be a link to the question edit page
$questionTagA = 1;
}
} else {
// IN A TEST - NOT IN THE COURSE
$actionLabel = get_lang('ReUseACopyInCurrentTest');
$actionIcon1 = 'clone';
$actionIcon2 = '';
$questionTagA = 0;
if ($selected_course == api_get_course_int_id()) {
// IN A TEST - IN THE COURSE
$actionLabel = get_lang('Reuse');
$actionIcon1 = 'add';
$actionIcon2 = '';
$questionTagA = 1;
}
}
$data = [];
if (is_array($mainQuestionList)) {
foreach ($mainQuestionList as $question) {
$row = [];
// This function checks if the question can be read
$question_type = get_question_type_for_question($selected_course, $question['id']);
if (empty($question_type)) {
continue;
}
$sessionId = isset($question['session_id']) ? $question['session_id'] : null;
//$exerciseName = isset($question['exercise_name']) ? '
('.$question['exercise_id'].') ' : null;
if (!$objExercise->hasQuestion($question['id'])) {
$row[] = Display::input(
'checkbox',
'questions[]',
$question['id'],
['class' => 'question_checkbox']
);
} else {
$row[] = '';
}
$row[] = getLinkForQuestion(
$questionTagA,
$fromExercise,
$question['id'],
$question['type'],
$question['question'],
$sessionId,
$question['exerciseId']
);
$row[] = $question_type;
$row[] = TestCategory::getCategoryNameForQuestion($question['id'], $selected_course);
$row[] = $question['level'];
$row[] = get_action_icon_for_question(
$actionIcon1,
$fromExercise,
$question['id'],
$question['type'],
$question['question'],
$selected_course,
$courseCategoryId,
$exerciseLevel,
$answerType,
$session_id,
$question['exerciseId'],
$objExercise
).' '.
get_action_icon_for_question(
$actionIcon2,
$fromExercise,
$question['id'],
$question['type'],
$question['question'],
$selected_course,
$courseCategoryId,
$exerciseLevel,
$answerType,
$session_id,
$question['exerciseId'],
$objExercise
);
$data[] = $row;
}
}
// Display table
$header = [
[
'',
false,
['style' => 'text-align:center'],
['style' => 'text-align:center'],
'',
],
[
get_lang('QuestionUpperCaseFirstLetter'),
false,
['style' => 'text-align:center'],
'',
],
[
get_lang('Type'),
false,
['style' => 'text-align:center'],
['style' => 'text-align:center'],
'',
],
[
get_lang('QuestionCategory'),
false,
['style' => 'text-align:center'],
['style' => 'text-align:center'],
'',
],
[
get_lang('Difficulty'),
false,
['style' => 'text-align:center'],
['style' => 'text-align:center'],
'',
],
[
$actionLabel,
false,
['style' => 'text-align:center'],
['style' => 'text-align:center'],
'',
],
];
echo $pagination;
echo '';
$tableId = 'question_pool_id';
$html = ''; //toolbar
echo $html;
Display::display_footer();
/**
* Put the menu entry for level and type to default "Choice"
* It is useful if you change the exercise, you need to reset the other menus.
*
* @author hubert.borderiou 13-10-2011
*/
function reset_menu_lvl_type()
{
global $exerciseLevel, $answerType;
$answerType = -1;
$exerciseLevel = -1;
}
/**
* Put the menu entry for exercise and level and type to default "Choice"
* It is useful if you change the course, you need to reset the other menus.
*
* @author hubert.borderiou 13-10-2011
*/
function reset_menu_exo_lvl_type()
{
global $exerciseId, $courseCategoryId;
reset_menu_lvl_type();
$exerciseId = 0;
$courseCategoryId = 0;
}
/**
* return the link to admin question, if needed.
*
* @param int $in_addA
* @param int $fromExercise
* @param int $questionId
* @param int $questionType
* @param string $questionName
* @param int $sessionId
* @param int $exerciseId
*
* @return string
*
* @author hubert.borderiou
*/
function getLinkForQuestion(
$in_addA,
$fromExercise,
$questionId,
$questionType,
$questionName,
$sessionId,
$exerciseId
) {
$result = $questionName;
if ($in_addA) {
$sessionIcon = '';
if (!empty($sessionId) && $sessionId != -1) {
$sessionIcon = ' '.Display::return_icon('star.png', get_lang('Session'));
}
$exerciseId = (int) $exerciseId;
$questionId = (int) $questionId;
$questionType = (int) $questionType;
$fromExercise = (int) $fromExercise;
$result = Display::url(
$questionName.$sessionIcon,
'admin.php?'.api_get_cidreq().
"&exerciseId=$exerciseId&editQuestion=$questionId&type=$questionType&fromExercise=$fromExercise"
);
}
return $result;
}
/**
Return the html code for delete, add, clone, edit a question
in_action = the code of the action triggered by the button
from_exercise = the id of the current exercise from which we click on question pool
in_questionid = the id of the current question
in_questiontype = the code of the type of the current question
in_questionname = the name of the question
in_selected_course = the if of the course chosen in the FILTERING MENU
in_courseCategoryId = the id of the category chosen in the FILTERING MENU
in_exerciseLevel = the level of the exercise chosen in the FILTERING MENU
in_answerType = the code of the type of the question chosen in the FILTERING MENU
in_session_id = the id of the session_id chosen in the FILTERING MENU
in_exercise_id = the id of the exercise chosen in the FILTERING MENU
*/
function get_action_icon_for_question(
$in_action,
$from_exercise,
$in_questionid,
$in_questiontype,
$in_questionname,
$in_selected_course,
$in_courseCategoryId,
$in_exerciseLevel,
$in_answerType,
$in_session_id,
$in_exercise_id,
Exercise $myObjEx
) {
$limitTeacherAccess = api_get_configuration_value('limit_exercise_teacher_access');
$getParams = "&selected_course=$in_selected_course&courseCategoryId=$in_courseCategoryId&exerciseId=$in_exercise_id&exerciseLevel=$in_exerciseLevel&answerType=$in_answerType&session_id=$in_session_id";
$res = '';
switch ($in_action) {
case 'delete':
if ($limitTeacherAccess && !api_is_platform_admin()) {
break;
}
$res = "";
$res .= Display::return_icon('delete.png', get_lang('Delete'));
$res .= "";
break;
case 'edit':
$res = getLinkForQuestion(
1,
$from_exercise,
$in_questionid,
$in_questiontype,
Display::return_icon('edit.png', get_lang('Modify')),
$in_session_id,
$in_exercise_id
);
break;
case 'add':
$res = '-';
if (!$myObjEx->hasQuestion($in_questionid)) {
$res = "";
$res .= Display::return_icon('view_more_stats.gif', get_lang('InsertALinkToThisQuestionInTheExercise'));
$res .= '';
}
break;
case 'clone':
$url = api_get_self().'?'.api_get_cidreq().$getParams.
"&question_copy=$in_questionid&course_id=$in_selected_course&fromExercise=$from_exercise";
$res = Display::url(
Display::return_icon('cd.png', get_lang('ReUseACopyInCurrentTest')),
$url
);
break;
default:
$res = $in_action;
break;
}
return $res;
}
/**
* Return the icon for the question type.
*
* @author hubert.borderiou 13-10-2011
*/
function get_question_type_for_question($in_selectedcourse, $in_questionid)
{
$courseInfo = api_get_course_info_by_id($in_selectedcourse);
$question = Question::read($in_questionid, $courseInfo);
$questionType = null;
if (!empty($question)) {
$typeImg = $question->getTypePicture();
$typeExpl = $question->getExplanation();
$questionType = Display::tag('div', Display::return_icon($typeImg, $typeExpl, [], 32), []);
}
return $questionType;
}