|
|
|
@ -9,7 +9,7 @@ require_once '../inc/global.inc.php'; |
|
|
|
|
require_once 'exercise.lib.php'; |
|
|
|
|
$this_section = SECTION_COURSES; |
|
|
|
|
|
|
|
|
|
$exercise_id = (isset($_GET['exerciseId']) && !empty($_GET['exerciseId'])) ? intval($_GET['exerciseId']) : 0; |
|
|
|
|
$exercise_id = isset($_GET['exerciseId']) && !empty($_GET['exerciseId']) ? intval($_GET['exerciseId']) : 0; |
|
|
|
|
$gradebook = isset($gradebook) ? $gradebook : null; |
|
|
|
|
|
|
|
|
|
$objExercise = new Exercise(); |
|
|
|
@ -19,23 +19,22 @@ if (!$result) { |
|
|
|
|
api_not_allowed(true); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$session_id = api_get_session_id(); |
|
|
|
|
$sessionId = api_get_session_id(); |
|
|
|
|
$courseCode = api_get_course_id(); |
|
|
|
|
|
|
|
|
|
if (empty($session_id)) { |
|
|
|
|
$students = CourseManager :: get_student_list_from_course_code(api_get_course_id(), false); |
|
|
|
|
if (empty($sessionId)) { |
|
|
|
|
$students = CourseManager :: get_student_list_from_course_code($courseCode, false); |
|
|
|
|
} else { |
|
|
|
|
$students = CourseManager :: get_student_list_from_course_code(api_get_course_id(), true, $session_id); |
|
|
|
|
$students = CourseManager :: get_student_list_from_course_code($courseCode, true, $sessionId); |
|
|
|
|
} |
|
|
|
|
$count_students = count($students); |
|
|
|
|
|
|
|
|
|
$question_list = $objExercise->get_validated_question_list(); |
|
|
|
|
|
|
|
|
|
$data = array(); |
|
|
|
|
//Question title # of students who tool it Lowest score Average Highest score Maximum score |
|
|
|
|
// Question title # of students who tool it Lowest score Average Highest score Maximum score |
|
|
|
|
$headers = array( |
|
|
|
|
get_lang('Question'), |
|
|
|
|
get_lang('QuestionType'), |
|
|
|
|
//get_lang('NumberOfStudentsWhoTryTheExercise'), |
|
|
|
|
get_lang('NumberStudentWhoSelectedIt'), |
|
|
|
|
get_lang('LowestScore'), |
|
|
|
|
get_lang('AverageScore'), |
|
|
|
@ -45,28 +44,42 @@ $headers = array( |
|
|
|
|
|
|
|
|
|
if (!empty($question_list)) { |
|
|
|
|
foreach ($question_list as $question_id) { |
|
|
|
|
$question_obj = Question::read($question_id); |
|
|
|
|
$exercise_stats = get_student_stats_by_question($question_id, $exercise_id, api_get_course_id(), api_get_session_id()); |
|
|
|
|
$count_users = get_number_students_question_with_answer_count($question_id, $exercise_id, api_get_course_id(), api_get_session_id()); |
|
|
|
|
|
|
|
|
|
$data[$question_id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
$data[$question_id]['type'] = $question_obj->get_question_type_name(); |
|
|
|
|
//$data[$question_id]['students_who_try_exercise'] = $exercise_stats['users']; |
|
|
|
|
$question_obj = Question::read($question_id); |
|
|
|
|
|
|
|
|
|
$exercise_stats = get_student_stats_by_question( |
|
|
|
|
$question_id, |
|
|
|
|
$exercise_id, |
|
|
|
|
$courseCode, |
|
|
|
|
$sessionId |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$count_users = get_number_students_question_with_answer_count( |
|
|
|
|
$question_id, |
|
|
|
|
$exercise_id, |
|
|
|
|
$courseCode, |
|
|
|
|
$sessionId |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$data[$question_id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
$data[$question_id]['type'] = $question_obj->get_question_type_name(); |
|
|
|
|
$percentange = 0; |
|
|
|
|
if ($count_students) { |
|
|
|
|
$percentange = $count_users/$count_students*100; |
|
|
|
|
$percentange = $count_users / $count_students*100; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$data[$question_id]['students_who_try_exercise'] = Display::bar_progress($percentange, false, $count_users .' / '.$count_students); |
|
|
|
|
|
|
|
|
|
$data[$question_id]['lowest_score'] = round($exercise_stats['min'], 2); |
|
|
|
|
$data[$question_id]['average_score'] = round($exercise_stats['average'], 2); |
|
|
|
|
$data[$question_id]['highest_score'] = round($exercise_stats['max'], 2); |
|
|
|
|
$data[$question_id]['max_score'] = round($question_obj->weighting, 2); |
|
|
|
|
$data[$question_id]['students_who_try_exercise'] = Display::bar_progress( |
|
|
|
|
$percentange, |
|
|
|
|
false, |
|
|
|
|
$count_users .' / '.$count_students |
|
|
|
|
); |
|
|
|
|
$data[$question_id]['lowest_score'] = round($exercise_stats['min'], 2); |
|
|
|
|
$data[$question_id]['average_score'] = round($exercise_stats['average'], 2); |
|
|
|
|
$data[$question_id]['highest_score'] = round($exercise_stats['max'], 2); |
|
|
|
|
$data[$question_id]['max_score'] = round($question_obj->weighting, 2); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//Format A table |
|
|
|
|
// Format A table |
|
|
|
|
$table = new HTML_Table(array('class' => 'data_table')); |
|
|
|
|
$row = 0; |
|
|
|
|
$column = 0; |
|
|
|
@ -87,7 +100,7 @@ foreach ($data as $row_table) { |
|
|
|
|
} |
|
|
|
|
$content = $table->toHtml(); |
|
|
|
|
|
|
|
|
|
//Format B |
|
|
|
|
// Format B |
|
|
|
|
|
|
|
|
|
$headers = array( |
|
|
|
|
get_lang('Question'), |
|
|
|
@ -102,19 +115,23 @@ if (!empty($question_list)) { |
|
|
|
|
$id = 0; |
|
|
|
|
foreach ($question_list as $question_id) { |
|
|
|
|
$question_obj = Question::read($question_id); |
|
|
|
|
$exercise_stats = get_student_stats_by_question($question_id, $exercise_id, api_get_course_id(), api_get_session_id()); |
|
|
|
|
$exercise_stats = get_student_stats_by_question( |
|
|
|
|
$question_id, |
|
|
|
|
$exercise_id, |
|
|
|
|
$courseCode, |
|
|
|
|
$sessionId |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$answer = new Answer($question_id); |
|
|
|
|
$answer_count = $answer->selectNbrAnswers(); |
|
|
|
|
|
|
|
|
|
for ($answer_id = 1; $answer_id <= $answer_count; $answer_id++) { |
|
|
|
|
$answer_info = $answer->selectAnswer($answer_id); |
|
|
|
|
$is_correct = $answer->isCorrect($answer_id); |
|
|
|
|
$answer_info = $answer->selectAnswer($answer_id); |
|
|
|
|
$is_correct = $answer->isCorrect($answer_id); |
|
|
|
|
$correct_answer = $is_correct == 1 ? get_lang('Yes') : get_lang('No'); |
|
|
|
|
$real_answer_id = $answer->selectAutoId($answer_id); |
|
|
|
|
|
|
|
|
|
//$data[$id]['name'] .=$answer_count; |
|
|
|
|
//Overwriting values depending of the question |
|
|
|
|
// Overwriting values depending of the question |
|
|
|
|
switch ($question_obj->type) { |
|
|
|
|
case FILL_IN_BLANKS : |
|
|
|
|
$answer_info_db = $answer_info; |
|
|
|
@ -124,9 +141,9 @@ if (!empty($question_list)) { |
|
|
|
|
$counter = 0; |
|
|
|
|
foreach ($answers as $answer_item) { |
|
|
|
|
if ($counter == 0) { |
|
|
|
|
$data[$id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
$data[$id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
} else { |
|
|
|
|
$data[$id]['name'] = '-'; |
|
|
|
|
$data[$id]['name'] = '-'; |
|
|
|
|
} |
|
|
|
|
$data[$id]['answer'] = $answer_item; |
|
|
|
|
|
|
|
|
@ -135,13 +152,22 @@ if (!empty($question_list)) { |
|
|
|
|
|
|
|
|
|
$data[$id]['correct'] = '-'; |
|
|
|
|
|
|
|
|
|
$count = get_number_students_answer_count($real_answer_id, $question_id, $exercise_id, api_get_course_id(), api_get_session_id(), FILL_IN_BLANKS, $answer_info_db, $answer_item); |
|
|
|
|
$count = get_number_students_answer_count( |
|
|
|
|
$real_answer_id, |
|
|
|
|
$question_id, |
|
|
|
|
$exercise_id, |
|
|
|
|
$courseCode, |
|
|
|
|
$sessionId, |
|
|
|
|
FILL_IN_BLANKS, |
|
|
|
|
$answer_info_db, |
|
|
|
|
$answer_item |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$percentange = 0; |
|
|
|
|
if (!empty($count_students)) { |
|
|
|
|
$percentange = $count/$count_students*100; |
|
|
|
|
} |
|
|
|
|
$data[$id]['attempts'] = Display::bar_progress($percentange, false, $count .' / '.$count_students); |
|
|
|
|
$data[$id]['attempts'] = Display::bar_progress($percentange, false, $count .' / '.$count_students); |
|
|
|
|
|
|
|
|
|
$id++; |
|
|
|
|
$counter++; |
|
|
|
@ -150,9 +176,9 @@ if (!empty($question_list)) { |
|
|
|
|
case MATCHING: |
|
|
|
|
if ($is_correct == 0) { |
|
|
|
|
if ($answer_id == 1) { |
|
|
|
|
$data[$id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
$data[$id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
} else { |
|
|
|
|
$data[$id]['name'] = '-'; |
|
|
|
|
$data[$id]['name'] = '-'; |
|
|
|
|
} |
|
|
|
|
$correct = ''; |
|
|
|
|
|
|
|
|
@ -163,48 +189,67 @@ if (!empty($question_list)) { |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$data[$id]['answer'] = $correct; |
|
|
|
|
$data[$id]['correct'] = $answer_info; |
|
|
|
|
|
|
|
|
|
$count = get_number_students_answer_count($answer_id, $question_id, $exercise_id, api_get_course_id(), api_get_session_id(), MATCHING); |
|
|
|
|
$data[$id]['answer'] = $correct; |
|
|
|
|
$data[$id]['correct'] = $answer_info; |
|
|
|
|
|
|
|
|
|
$count = get_number_students_answer_count( |
|
|
|
|
$answer_id, |
|
|
|
|
$question_id, |
|
|
|
|
$exercise_id, |
|
|
|
|
$courseCode, |
|
|
|
|
$sessionId, |
|
|
|
|
MATCHING |
|
|
|
|
); |
|
|
|
|
$percentange = 0; |
|
|
|
|
if (!empty($count_students)) { |
|
|
|
|
$percentange = $count/$count_students*100; |
|
|
|
|
} |
|
|
|
|
$data[$id]['attempts'] = Display::bar_progress($percentange, false, $count .' / '.$count_students); |
|
|
|
|
$data[$id]['attempts'] = Display::bar_progress($percentange, false, $count .' / '.$count_students); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case HOT_SPOT: |
|
|
|
|
if ($answer_id == 1) { |
|
|
|
|
$data[$id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
$data[$id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
} else { |
|
|
|
|
$data[$id]['name'] = '-'; |
|
|
|
|
$data[$id]['name'] = '-'; |
|
|
|
|
} |
|
|
|
|
$data[$id]['answer'] = $answer_info; |
|
|
|
|
$data[$id]['correct'] = '-'; |
|
|
|
|
|
|
|
|
|
$count = get_number_students_answer_hotspot_count($answer_id, $question_id, $exercise_id, api_get_course_id(), api_get_session_id()); |
|
|
|
|
$data[$id]['answer'] = $answer_info; |
|
|
|
|
$data[$id]['correct'] = '-'; |
|
|
|
|
|
|
|
|
|
$count = get_number_students_answer_hotspot_count( |
|
|
|
|
$answer_id, |
|
|
|
|
$question_id, |
|
|
|
|
$exercise_id, |
|
|
|
|
$courseCode, |
|
|
|
|
$sessionId |
|
|
|
|
); |
|
|
|
|
$percentange = 0; |
|
|
|
|
if (!empty($count_students)) { |
|
|
|
|
$percentange = $count/$count_students*100; |
|
|
|
|
} |
|
|
|
|
$data[$id]['attempts'] = Display::bar_progress($percentange, false, $count .' / '.$count_students); |
|
|
|
|
$data[$id]['attempts'] = Display::bar_progress($percentange, false, $count .' / '.$count_students); |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
if ($answer_id == 1) { |
|
|
|
|
$data[$id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
$data[$id]['name'] = cut($question_obj->question, 100); |
|
|
|
|
} else { |
|
|
|
|
$data[$id]['name'] = '-'; |
|
|
|
|
$data[$id]['name'] = '-'; |
|
|
|
|
} |
|
|
|
|
$data[$id]['answer'] = $answer_info; |
|
|
|
|
$data[$id]['correct'] = $correct_answer; |
|
|
|
|
|
|
|
|
|
$count = get_number_students_answer_count($real_answer_id, $question_id, $exercise_id, api_get_course_id(), api_get_session_id()); |
|
|
|
|
$data[$id]['answer'] = $answer_info; |
|
|
|
|
$data[$id]['correct'] = $correct_answer; |
|
|
|
|
|
|
|
|
|
$count = get_number_students_answer_count( |
|
|
|
|
$real_answer_id, |
|
|
|
|
$question_id, |
|
|
|
|
$exercise_id, |
|
|
|
|
$courseCode, |
|
|
|
|
$sessionId |
|
|
|
|
); |
|
|
|
|
$percentange = 0; |
|
|
|
|
if (!empty($count_students)) { |
|
|
|
|
$percentange = $count/$count_students*100; |
|
|
|
|
} |
|
|
|
|
$data[$id]['attempts'] = Display::bar_progress($percentange, false, $count .' / '.$count_students); |
|
|
|
|
$data[$id]['attempts'] = Display::bar_progress($percentange, false, $count .' / '.$count_students); |
|
|
|
|
} |
|
|
|
|
$id++; |
|
|
|
|
} |
|
|
|
@ -212,7 +257,7 @@ if (!empty($question_list)) { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//Format A table |
|
|
|
|
// Format A table |
|
|
|
|
$table = new HTML_Table(array('class' => 'data_table')); |
|
|
|
|
$row = 0; |
|
|
|
|
$column = 0; |
|
|
|
@ -243,7 +288,8 @@ $tpl = new Template(get_lang('ReportByQuestion')); |
|
|
|
|
//$actions[]= array(get_lang('Back'), Display::return_icon('back.png', get_lang('Back'), 'exercise_report.php?'.$exercise_id)); |
|
|
|
|
//$tpl->set_actions($actions); |
|
|
|
|
|
|
|
|
|
$actions = '<a href="exercise_report.php?exerciseId='.intval($_GET['exerciseId']).'">' . Display :: return_icon('back.png', get_lang('GoBackToQuestionList'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
|
|
|
$actions = '<a href="exercise_report.php?exerciseId='.intval($_GET['exerciseId']).'">' . |
|
|
|
|
Display :: return_icon('back.png', get_lang('GoBackToQuestionList'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
|
|
|
$actions = Display::div($actions, array('class'=> 'actions')); |
|
|
|
|
$content = $actions.$content; |
|
|
|
|
$tpl->assign('content', $content); |
|
|
|
|