You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
156 lines
3.9 KiB
156 lines
3.9 KiB
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
require_once __DIR__.'/../inc/global.inc.php';
|
|
$this_section = SECTION_COURSES;
|
|
|
|
api_protect_course_script(true);
|
|
|
|
$isAllowedToEdit = api_is_allowed_to_edit(null, true);
|
|
|
|
if (!$isAllowedToEdit) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$exerciseId = isset($_REQUEST['id']) ? (int) $_REQUEST['id'] : 0;
|
|
$groups = $_REQUEST['groups'] ?? [];
|
|
$users = $_REQUEST['users'] ?? [];
|
|
|
|
if (empty($exerciseId)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$sessionId = api_get_session_id();
|
|
$exercise = new Exercise();
|
|
$result = $exercise->read($exerciseId);
|
|
$course = api_get_course_entity();
|
|
|
|
if (empty($result)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$nameTools = get_lang('ExerciseManagement');
|
|
$interbreadcrumb[] = [
|
|
'url' => 'exercise.php?'.api_get_cidreq(),
|
|
'name' => get_lang('Exercises'),
|
|
];
|
|
$interbreadcrumb[] = [
|
|
'url' => 'admin.php?exerciseId='.$exercise->iId.'&'.api_get_cidreq(),
|
|
'name' => $exercise->selectTitle(true),
|
|
];
|
|
|
|
$interbreadcrumb[] = [
|
|
'url' => 'exercise_report.php?'.api_get_cidreq().'&exerciseId='.$exercise->iId,
|
|
'name' => get_lang('StudentScore'),
|
|
];
|
|
$courseId = api_get_course_int_id();
|
|
|
|
$form = new FormValidator('search_form', 'GET', api_get_self().'?id='.$exerciseId.'&'.api_get_cidreq());
|
|
$form->addCourseHiddenParams();
|
|
$form->addHidden('id', $exerciseId);
|
|
|
|
$courseGroups = GroupManager::get_group_list(null, $course);
|
|
|
|
if (!empty($courseGroups)) {
|
|
$courseGroups = array_column($courseGroups, 'name', 'iid');
|
|
$form->addSelect(
|
|
'groups',
|
|
get_lang('Groups'),
|
|
$courseGroups,
|
|
[
|
|
'multiple' => true,
|
|
]
|
|
);
|
|
}
|
|
|
|
$courseUsers = CourseManager::get_user_list_from_course_code($course->getCode());
|
|
if (!empty($courseUsers)) {
|
|
array_walk(
|
|
$courseUsers,
|
|
function (&$data, $key) {
|
|
$data = api_get_person_name($data['firstname'], $data['lastname']);
|
|
}
|
|
);
|
|
}
|
|
|
|
$form->addSelect(
|
|
'users',
|
|
get_lang('Users'),
|
|
$courseUsers,
|
|
[
|
|
'multiple' => true,
|
|
]
|
|
);
|
|
|
|
$form->addButtonSearch(get_lang('Search'));
|
|
|
|
$formToString = $form->toHtml();
|
|
|
|
$table = new HTML_Table(['class' => 'table table-hover table-striped']);
|
|
$row = 0;
|
|
$column = 0;
|
|
$headers = [
|
|
get_lang('Question'),
|
|
get_lang('Wrong answer').' / '.get_lang('Total'),
|
|
'%',
|
|
];
|
|
foreach ($headers as $header) {
|
|
$table->setHeaderContents($row, $column, $header);
|
|
$column++;
|
|
}
|
|
$row++;
|
|
$scoreDisplay = new ScoreDisplay();
|
|
$orderedData = [];
|
|
|
|
if ($form->validate()) {
|
|
$questions = ExerciseLib::getWrongQuestionResults($courseId, $exerciseId, $sessionId, $groups, $users);
|
|
foreach ($questions as $data) {
|
|
$questionId = (int) $data['question_id'];
|
|
$total = ExerciseLib::getTotalQuestionAnswered(
|
|
$courseId,
|
|
$exerciseId,
|
|
$questionId,
|
|
$sessionId,
|
|
$groups,
|
|
$users
|
|
);
|
|
$orderedData[] = [
|
|
$data['question'],
|
|
$data['count'].' / '.$total,
|
|
$scoreDisplay->display_score([$data['count'], $total], SCORE_AVERAGE),
|
|
];
|
|
}
|
|
} else {
|
|
$questions = ExerciseLib::getWrongQuestionResults($courseId, $exerciseId, $sessionId);
|
|
foreach ($questions as $data) {
|
|
$questionId = (int) $data['question_id'];
|
|
$total = ExerciseLib::getTotalQuestionAnswered($courseId, $exerciseId, $questionId, $sessionId);
|
|
$orderedData[] = [
|
|
$data['question'],
|
|
$data['count'].' / '.$total,
|
|
$scoreDisplay->display_score([$data['count'], $total], SCORE_AVERAGE),
|
|
];
|
|
}
|
|
}
|
|
|
|
$table = new SortableTableFromArray(
|
|
$orderedData,
|
|
0,
|
|
100,
|
|
'question_tracking'
|
|
);
|
|
|
|
$table->hideNavigation = true;
|
|
|
|
$table->column = 2;
|
|
$column = 0;
|
|
foreach ($headers as $header) {
|
|
$table->set_header($column, $header, false);
|
|
$column++;
|
|
}
|
|
|
|
Display::display_header($nameTools, get_lang('Exercise'));
|
|
echo $formToString;
|
|
echo $table->return_table();
|
|
Display::display_footer();
|
|
|