diff --git a/mod/hotpot/report.php b/mod/hotpot/report.php
index 4eb6f484aca..550ca47aa98 100644
--- a/mod/hotpot/report.php
+++ b/mod/hotpot/report.php
@@ -31,80 +31,80 @@
}
}
- // set homeurl of couse (for error messages)
- $course_homeurl = "$CFG->wwwroot/course/view.php?id=$course->id";
+ // set homeurl of couse (for error messages)
+ $course_homeurl = "$CFG->wwwroot/course/view.php?id=$course->id";
- require_login($course->id);
+ require_login($course->id);
- // get report mode
- if (isteacher($course->id)) {
- $mode = optional_param("mode", "overview");
- } else {
- // students have no choice
- $mode = 'overview';
- }
+ // get report mode
+ if (isteacher($course->id)) {
+ $mode = optional_param("mode", "overview");
+ } else {
+ // students have no choice
+ $mode = 'overview';
+ }
- // assemble array of form data
- $formdata = array(
- 'mode' => $mode,
- 'reportcourse' => isadmin() ? optional_param('reportcourse', get_user_preferences('hotpot_reportcourse', 'this')) : 'this',
- 'reportusers' => isteacher($course->id) ? optional_param('reportusers', get_user_preferences('hotpot_reportusers', 'all')) : 'this',
- 'reportattempts' => optional_param('reportattempts', get_user_preferences('hotpot_reportattempts', 'all')),
- 'reportformat' => optional_param('reportformat', 'htm'),
- 'reportshowlegend' => optional_param('reportshowlegend', get_user_preferences('hotpot_reportshowlegend', '0')),
- 'reportencoding' => optional_param('reportencoding', get_user_preferences('hotpot_reportencoding', '')),
- 'reportwrapdata' => optional_param('reportwrapdata', get_user_preferences('hotpot_reportwrapdata', '1')),
- );
+ // assemble array of form data
+ $formdata = array(
+ 'mode' => $mode,
+ 'reportcourse' => isadmin() ? optional_param('reportcourse', get_user_preferences('hotpot_reportcourse', 'this')) : 'this',
+ 'reportusers' => isteacher($course->id) ? optional_param('reportusers', get_user_preferences('hotpot_reportusers', 'all')) : 'this',
+ 'reportattempts' => optional_param('reportattempts', get_user_preferences('hotpot_reportattempts', 'all')),
+ 'reportformat' => optional_param('reportformat', 'htm'),
+ 'reportshowlegend' => optional_param('reportshowlegend', get_user_preferences('hotpot_reportshowlegend', '0')),
+ 'reportencoding' => optional_param('reportencoding', get_user_preferences('hotpot_reportencoding', '')),
+ 'reportwrapdata' => optional_param('reportwrapdata', get_user_preferences('hotpot_reportwrapdata', '1')),
+ );
- foreach ($formdata as $name=>$value) {
- set_user_preference("hotpot_$name", $value);
- }
+ foreach ($formdata as $name=>$value) {
+ set_user_preference("hotpot_$name", $value);
+ }
/// Start the report
- add_to_log($course->id, "hotpot", "report", "report.php?id=$cm->id&mode=$mode", "$hotpot->id", "$cm->id");
+ add_to_log($course->id, "hotpot", "report", "report.php?id=$cm->id&mode=$mode", "$hotpot->id", "$cm->id");
- // print page header. if required
- if ($formdata['reportformat']=='htm') {
- hotpot_print_report_heading($course, $cm, $hotpot, $mode);
- if (isteacher($course->id)) {
- hotpot_print_report_selector($course, $hotpot, $formdata);
- }
- }
+ // print page header. if required
+ if ($formdata['reportformat']=='htm') {
+ hotpot_print_report_heading($course, $cm, $hotpot, $mode);
+ if (isteacher($course->id)) {
+ hotpot_print_report_selector($course, $hotpot, $formdata);
+ }
+ }
- // delete selected attempts, if any
- if (isteacher($course->id)) {
- $del = optional_param("del", "");
- hotpot_delete_selected_attempts($hotpot, $del);
- }
+ // delete selected attempts, if any
+ if (isteacher($course->id)) {
+ $del = optional_param("del", "");
+ hotpot_delete_selected_attempts($hotpot, $del);
+ }
- $hotpot_ids = '';
- $course_ids = '';
- switch ($formdata['reportcourse']) {
- case 'this':
- $course_ids = $course->id;
- $hotpot_ids = $hotpot->id;
- break;
- case 'all' :
- $records = get_records_select_menu('user_teachers', "userid='$USER->id'", 'course', 'id, course');
- $course_ids = join(',', array_values($records));
+ $hotpot_ids = '';
+ $course_ids = '';
+ switch ($formdata['reportcourse']) {
+ case 'this':
+ $course_ids = $course->id;
+ $hotpot_ids = $hotpot->id;
+ break;
+ case 'all' :
+ $records = get_records_select_menu('user_teachers', "userid='$USER->id'", 'course', 'id, course');
+ $course_ids = join(',', array_values($records));
- $records = get_records_select_menu('hotpot', "reference='$hotpot->reference'", 'reference', 'id, reference');
- $hotpot_ids = join(',', array_keys($records));
- break;
- }
+ $records = get_records_select_menu('hotpot', "reference='$hotpot->reference'", 'reference', 'id, reference');
+ $hotpot_ids = join(',', array_keys($records));
+ break;
+ }
- $user_ids = '';
- $users = array();
- switch ($formdata['reportusers']) {
- case 'allusers':
+ $user_ids = '';
+ $users = array();
+ switch ($formdata['reportusers']) {
+ case 'allusers':
// anyone who has ever attempted this hotpot
if ($records = get_records_select('hotpot_attempts', "hotpot IN ($hotpot_ids)", '', 'id,userid')) {
foreach ($records as $record) {
$users[$record->userid] = 0; // "0" means NOT a currently recognized participant
}
}
- break;
+ break;
case 'allparticipants':
// admins
@@ -131,262 +131,262 @@
$users[$record->id] = 1;
}
}
- // add students next
+ // add students next
- case 'existingstudents':
+ case 'existingstudents':
// students
if ($records = get_records_select('user_students', "course IN ($course_ids)", '', 'id,userid')) {
foreach ($records as $record) {
$users[$record->userid] = 1;
}
}
- break;
+ break;
- case 'this': // current user only
- $user_ids = $USER->id;
- break;
+ case 'this': // current user only
+ $user_ids = $USER->id;
+ break;
- default: // specific user selected by teacher
- if (is_numeric($formdata['reportusers'])) {
- $user_ids = $formdata['reportusers'];
- }
- } // end switch
+ default: // specific user selected by teacher
+ if (is_numeric($formdata['reportusers'])) {
+ $user_ids = $formdata['reportusers'];
+ }
+ } // end switch
if (empty($user_ids) && count($users)) {
ksort($users);
$user_ids = join(',', array_keys($users));
}
- if (empty($user_ids)) {
- print_heading(get_string('nousersyet'));
- exit;
- }
+ if (empty($user_ids)) {
+ print_heading(get_string('nousersyet'));
+ exit;
+ }
- // database table and selection conditions
- $table = "{$CFG->prefix}hotpot_attempts AS a";
- $select = "a.hotpot IN ($hotpot_ids) AND a.userid IN ($user_ids)";
- if ($mode!='overview') {
- $select .= ' AND a.status<>'.HOTPOT_STATUS_INPROGRESS;
- }
+ // database table and selection conditions
+ $table = "{$CFG->prefix}hotpot_attempts AS a";
+ $select = "a.hotpot IN ($hotpot_ids) AND a.userid IN ($user_ids)";
+ if ($mode!='overview') {
+ $select .= ' AND a.status<>'.HOTPOT_STATUS_INPROGRESS;
+ }
- // confine attempts if necessary
- switch ($formdata['reportattempts']) {
- case 'best':
- $function = 'MAX';
- $fieldnames = array('score', 'id', 'clickreportid');
- $defaultvalue = 0;
- break;
- case 'first':
- $function = 'MIN';
- $fieldnames = array('timefinish', 'id', 'clickreportid');
- $default_value = time();
- break;
- case 'last':
- $function = 'MAX';
- $fieldnames = array('timefinish', 'id', 'clickreportid');
- $defaultvalue = time();
- break;
- default: // 'all' and any others
- $function = '';
- $fieldnames = array();
- $defaultvalue = '';
- break;
- }
- if (empty($function) || empty($fieldnames)) {
- // do nothing (i.e. get ALL attempts)
- } else {
- $groupby = 'userid';
- $records = hotpot_get_records_groupby($function, $fieldnames, $table, $select, $groupby);
+ // confine attempts if necessary
+ switch ($formdata['reportattempts']) {
+ case 'best':
+ $function = 'MAX';
+ $fieldnames = array('score', 'id', 'clickreportid');
+ $defaultvalue = 0;
+ break;
+ case 'first':
+ $function = 'MIN';
+ $fieldnames = array('timefinish', 'id', 'clickreportid');
+ $default_value = time();
+ break;
+ case 'last':
+ $function = 'MAX';
+ $fieldnames = array('timefinish', 'id', 'clickreportid');
+ $defaultvalue = time();
+ break;
+ default: // 'all' and any others
+ $function = '';
+ $fieldnames = array();
+ $defaultvalue = '';
+ break;
+ }
+ if (empty($function) || empty($fieldnames)) {
+ // do nothing (i.e. get ALL attempts)
+ } else {
+ $groupby = 'userid';
+ $records = hotpot_get_records_groupby($function, $fieldnames, $table, $select, $groupby);
- $ids = array();
- foreach ($records as $record) {
- $ids[] = $record->clickreportid;
- }
- $select = "a.clickreportid IN (".join(',', $ids).")";
- }
+ $ids = array();
+ foreach ($records as $record) {
+ $ids[] = $record->clickreportid;
+ }
+ $select = "a.clickreportid IN (".join(',', $ids).")";
+ }
- // pick out last attempt in each clickreport series
- $cr_attempts = hotpot_get_records_groupby('MAX', array('timefinish', 'id'), $table, $select, 'clickreportid');
+ // pick out last attempt in each clickreport series
+ $cr_attempts = hotpot_get_records_groupby('MAX', array('timefinish', 'id'), $table, $select, 'clickreportid');
- $fields = 'a.*, u.firstname, u.lastname, u.picture';
- if ($mode=='click') {
- $fields .= ', u.idnumber';
- } else {
- // overview, simple and detailed reports
- // get last attempt record in clickreport series
- $ids = array();
- foreach ($cr_attempts as $cr_attempt) {
- $ids[] = $cr_attempt->id;
- }
- if (empty($ids)) {
- $select = "";
- } else {
- $ids = array_unique($ids);
- sort($ids);
- $select = "a.id IN (".join(',', $ids).")";
- }
- }
+ $fields = 'a.*, u.firstname, u.lastname, u.picture';
+ if ($mode=='click') {
+ $fields .= ', u.idnumber';
+ } else {
+ // overview, simple and detailed reports
+ // get last attempt record in clickreport series
+ $ids = array();
+ foreach ($cr_attempts as $cr_attempt) {
+ $ids[] = $cr_attempt->id;
+ }
+ if (empty($ids)) {
+ $select = "";
+ } else {
+ $ids = array_unique($ids);
+ sort($ids);
+ $select = "a.id IN (".join(',', $ids).")";
+ }
+ }
- $attempts = array();
+ $attempts = array();
- if ($select) {
- // add user information to SQL query
- $select .= ' AND a.userid = u.id';
- $table .= ", {$CFG->prefix}user AS u";
- $order = "u.lastname, a.attempt, a.timefinish";
- // get the attempts (at last!)
- $attempts = get_records_sql("SELECT $fields FROM $table WHERE $select ORDER BY $order");
- }
+ if ($select) {
+ // add user information to SQL query
+ $select .= ' AND a.userid = u.id';
+ $table .= ", {$CFG->prefix}user AS u";
+ $order = "u.lastname, a.attempt, a.timefinish";
+ // get the attempts (at last!)
+ $attempts = get_records_sql("SELECT $fields FROM $table WHERE $select ORDER BY $order");
+ }
- // stop now if no attempts were found
- if (empty($attempts)) {
- print_heading(get_string('noattempts','quiz'));
- exit;
- }
+ // stop now if no attempts were found
+ if (empty($attempts)) {
+ print_heading(get_string('noattempts','quiz'));
+ exit;
+ }
- // get the questions
- if (!$questions = get_records_select('hotpot_questions', "hotpot='$hotpot->id'")) {
- $questions = array();
- }
+ // get the questions
+ if (!$questions = get_records_select('hotpot_questions', "hotpot='$hotpot->id'")) {
+ $questions = array();
+ }
- // get grades
- $grades = hotpot_get_grades($hotpot, $user_ids);
+ // get grades
+ $grades = hotpot_get_grades($hotpot, $user_ids);
- // get list of attempts by user and set reference to last attempt in clickreport series
- $users = array();
- foreach ($attempts as $id=>$attempt) {
+ // get list of attempts by user and set reference to last attempt in clickreport series
+ $users = array();
+ foreach ($attempts as $id=>$attempt) {
- $userid = $attempt->userid;
+ $userid = $attempt->userid;
- if (!isset($users[$userid])) {
- $users[$userid]->grade = isset($grades[$userid]) ? $grades[$userid] : ' ';
- $users[$userid]->attempts = array();
- }
+ if (!isset($users[$userid])) {
+ $users[$userid]->grade = isset($grades[$userid]) ? $grades[$userid] : ' ';
+ $users[$userid]->attempts = array();
+ }
- $users[$userid]->attempts[] = &$attempts[$id];
+ $users[$userid]->attempts[] = &$attempts[$id];
- if ($mode=='click' && isset($cr_attempts[$id])) {
- $attempts[$id]->cr_lastclick = $cr_attempts[$id]->id;
- $attempts[$id]->cr_timefinish = $cr_attempts[$id]->timefinish;
- }
- }
+ if ($mode=='click' && isset($cr_attempts[$id])) {
+ $attempts[$id]->cr_lastclick = $cr_attempts[$id]->id;
+ $attempts[$id]->cr_timefinish = $cr_attempts[$id]->timefinish;
+ }
+ }
- if ($mode!='overview') {
+ if ($mode!='overview') {
- // initialise details of responses to questions in these attempts
- foreach ($attempts as $a=>$attempt) {
- $attempts[$a]->responses = array();
- }
- foreach ($questions as $q=>$question) {
- $questions[$q]->attempts = array();
- }
+ // initialise details of responses to questions in these attempts
+ foreach ($attempts as $a=>$attempt) {
+ $attempts[$a]->responses = array();
+ }
+ foreach ($questions as $q=>$question) {
+ $questions[$q]->attempts = array();
+ }
- // get reponses to these attempts
- $attempt_ids = join(',',array_keys($attempts));
- if (!$responses = get_records_sql("SELECT * FROM {$CFG->prefix}hotpot_responses WHERE attempt IN ($attempt_ids)")) {
- $responses = array();
- }
+ // get reponses to these attempts
+ $attempt_ids = join(',',array_keys($attempts));
+ if (!$responses = get_records_sql("SELECT * FROM {$CFG->prefix}hotpot_responses WHERE attempt IN ($attempt_ids)")) {
+ $responses = array();
+ }
- // ids of questions used in these responses
- $questionids = array();
+ // ids of questions used in these responses
+ $questionids = array();
- foreach ($responses as $response) {
- // shortcuts to the attempt and question ids
- $a = $response->attempt;
- $q = $response->question;
+ foreach ($responses as $response) {
+ // shortcuts to the attempt and question ids
+ $a = $response->attempt;
+ $q = $response->question;
- // check the attempt and question objects exist
- // (if they don't exist, something is very wrong!)
- if (isset($attempts[$a]) || isset($questions[$q])) {
+ // check the attempt and question objects exist
+ // (if they don't exist, something is very wrong!)
+ if (isset($attempts[$a]) || isset($questions[$q])) {
- // add the response for this attempt
- $attempts[$a]->responses[$q] = $response;
+ // add the response for this attempt
+ $attempts[$a]->responses[$q] = $response;
- // add a reference from the question to the attempt which includes this question
- $questions[$q]->attempts[] = &$attempts[$a];
+ // add a reference from the question to the attempt which includes this question
+ $questions[$q]->attempts[] = &$attempts[$a];
- // flag this id as being used
- $questionids[$q] = true;
- }
- }
+ // flag this id as being used
+ $questionids[$q] = true;
+ }
+ }
- // remove unused questions
- $questionids = array_keys($questionids);
- foreach ($questions as $id=>$question) {
- if (!in_array($id, $questionids)) {
- unset($questions[$id]);
- }
- }
- }
+ // remove unused questions
+ $questionids = array_keys($questionids);
+ foreach ($questions as $id=>$question) {
+ if (!in_array($id, $questionids)) {
+ unset($questions[$id]);
+ }
+ }
+ }
/// Open the selected hotpot report and display it
- $mode = clean_param($mode, PARAM_SAFEDIR);
+ $mode = clean_param($mode, PARAM_SAFEDIR);
- if (! is_readable("report/$mode/report.php")) {
- error("Report not known (".clean_text($mode).")", $course_homeurl);
- }
+ if (! is_readable("report/$mode/report.php")) {
+ error("Report not known (".clean_text($mode).")", $course_homeurl);
+ }
- include("report/default.php"); // Parent class
- include("report/$mode/report.php");
+ include("report/default.php"); // Parent class
+ include("report/$mode/report.php");
- $report = new hotpot_report();
+ $report = new hotpot_report();
- if (! $report->display($hotpot, $cm, $course, $users, $attempts, $questions, $formdata)) {
- error("Error occurred during report processing!", $course_homeurl);
- }
+ if (! $report->display($hotpot, $cm, $course, $users, $attempts, $questions, $formdata)) {
+ error("Error occurred during report processing!", $course_homeurl);
+ }
- if ($formdata['reportformat']=='htm') {
- print_footer($course);
- }
+ if ($formdata['reportformat']=='htm') {
+ print_footer($course);
+ }
//////////////////////////////////////////////
/// functions to delete attempts and responses
function hotpot_grade_heading($hotpot, $formdata) {
- global $HOTPOT_GRADEMETHOD;
- $grademethod = $HOTPOT_GRADEMETHOD[$hotpot->grademethod];
+ global $HOTPOT_GRADEMETHOD;
+ $grademethod = $HOTPOT_GRADEMETHOD[$hotpot->grademethod];
- if ($hotpot->grade!=100) {
- $grademethod = "$hotpot->grade x $grademethod/100";
- }
- if ($formdata['reportformat']=='htm') {
- $grademethod = ''.$grademethod.'';
- }
- $nl = $formdata['reportformat']=='htm' ? '
' : "\n";
- return get_string('grade')."$nl($grademethod)";
+ if ($hotpot->grade!=100) {
+ $grademethod = "$hotpot->grade x $grademethod/100";
+ }
+ if ($formdata['reportformat']=='htm') {
+ $grademethod = ''.$grademethod.'';
+ }
+ $nl = $formdata['reportformat']=='htm' ? '
' : "\n";
+ return get_string('grade')."$nl($grademethod)";
}
function hotpot_delete_selected_attempts(&$hotpot, $del) {
- $select = '';
- switch ($del) {
- case 'all' :
- $select = "hotpot='$hotpot->id'";
- break;
- case 'abandoned':
- $select = "hotpot='$hotpot->id' AND status=".HOTPOT_STATUS_ABANDONED;
- break;
- case 'selection':
- $ids = (array)data_submitted();
- unset($ids['del']);
- unset($ids['id']);
- if (!empty($ids)) {
- $select = "hotpot='$hotpot->id' AND clickreportid IN (".implode(',', $ids).")";
- }
- break;
- }
+ $select = '';
+ switch ($del) {
+ case 'all' :
+ $select = "hotpot='$hotpot->id'";
+ break;
+ case 'abandoned':
+ $select = "hotpot='$hotpot->id' AND status=".HOTPOT_STATUS_ABANDONED;
+ break;
+ case 'selection':
+ $ids = (array)data_submitted();
+ unset($ids['del']);
+ unset($ids['id']);
+ if (!empty($ids)) {
+ $select = "hotpot='$hotpot->id' AND clickreportid IN (".implode(',', $ids).")";
+ }
+ break;
+ }
- // delete attempts using $select, if it is set
- if ($select) {
+ // delete attempts using $select, if it is set
+ if ($select) {
- $table = 'hotpot_attempts';
- if ($attempts = get_records_select($table, $select)) {
+ $table = 'hotpot_attempts';
+ if ($attempts = get_records_select($table, $select)) {
- hotpot_delete_and_notify($table, $select, get_string('attempts', 'quiz'));
+ hotpot_delete_and_notify($table, $select, get_string('attempts', 'quiz'));
- $select = 'attempt IN ('.implode(',', array_keys($attempts)).')';
- hotpot_delete_and_notify('hotpot_details', $select, get_string('rawdetails', 'hotpot'));
- hotpot_delete_and_notify('hotpot_responses', $select, get_string('answer', 'quiz'));
- }
- }
+ $select = 'attempt IN ('.implode(',', array_keys($attempts)).')';
+ hotpot_delete_and_notify('hotpot_details', $select, get_string('rawdetails', 'hotpot'));
+ hotpot_delete_and_notify('hotpot_responses', $select, get_string('answer', 'quiz'));
+ }
+ }
}
@@ -395,260 +395,260 @@ function hotpot_delete_selected_attempts(&$hotpot, $del) {
/// report selector menus
function hotpot_print_report_heading(&$course, &$cm, &$hotpot, &$mode) {
- $strmodulenameplural = get_string("modulenameplural", "hotpot");
- $strmodulename = get_string("modulename", "hotpot");
+ $strmodulenameplural = get_string("modulenameplural", "hotpot");
+ $strmodulename = get_string("modulename", "hotpot");
- $title = "$course->shortname: $hotpot->name";
- $heading = "$course->fullname";
+ $title = "$course->shortname: $hotpot->name";
+ $heading = "$course->fullname";
- $navigation = "id>$strmodulenameplural -> ";
- $navigation .= "id\">$hotpot->name -> ";
- if (isteacher($course->id)) {
- if ($mode=='overview' || $mode=='simplestat' || $mode=='fullstat') {
- $module = "quiz";
- } else {
- $module = "hotpot";
- }
- $navigation .= get_string("report$mode", $module);
+ $navigation = "id>$strmodulenameplural -> ";
+ $navigation .= "id\">$hotpot->name -> ";
+ if (isteacher($course->id)) {
+ if ($mode=='overview' || $mode=='simplestat' || $mode=='fullstat') {
+ $module = "quiz";
+ } else {
+ $module = "hotpot";
+ }
+ $navigation .= get_string("report$mode", $module);
- } else {
- $navigation .= get_string("report", "quiz");
- }
- if ($course->category) {
- $navigation = "id\">$course->shortname -> $navigation";
- }
- $button = update_module_button($cm->id, $course->id, $strmodulename);
+ } else {
+ $navigation .= get_string("report", "quiz");
+ }
+ if ($course->category) {
+ $navigation = "id\">$course->shortname -> $navigation";
+ }
+ $button = update_module_button($cm->id, $course->id, $strmodulename);
- print_header($title, $heading, $navigation, "", "", true, $button, navmenu($course, $cm));
+ print_header($title, $heading, $navigation, "", "", true, $button, navmenu($course, $cm));
- print_heading($hotpot->name);
+ print_heading($hotpot->name);
}
function hotpot_print_report_selector(&$course, &$hotpot, &$formdata) {
- global $CFG;
+ global $CFG;
- $reports = hotpot_get_report_names('overview,simplestat,fullstat');
+ $reports = hotpot_get_report_names('overview,simplestat,fullstat');
- print '