2009-09-25 05:24:13 +00:00
|
|
|
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display user activity reports for a course
|
|
|
|
*
|
|
|
|
* @copyright 1999 Martin Dougiamas http://dougiamas.com
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
* @package course
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once("../config.php");
|
|
|
|
require_once("lib.php");
|
|
|
|
|
|
|
|
$id = required_param('id',PARAM_INT); // course id
|
|
|
|
$user = required_param('user',PARAM_INT); // user id
|
|
|
|
$mode = optional_param('mode', "todaylogs", PARAM_ALPHA);
|
|
|
|
|
2010-01-16 15:39:56 +00:00
|
|
|
$url = new moodle_url('/course/user.php', array('id'=>$id,'user'=>$user, 'mode'=>$mode));
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2013-08-21 13:42:30 +08:00
|
|
|
$course = $DB->get_record('course', array('id'=>$id), '*', MUST_EXIST);
|
2011-11-03 21:53:40 +01:00
|
|
|
$user = $DB->get_record("user", array("id"=>$user, 'deleted'=>0), '*', MUST_EXIST);
|
2007-11-21 16:30:25 +00:00
|
|
|
|
2011-11-03 18:48:20 +01:00
|
|
|
if ($mode === 'outline' or $mode === 'complete') {
|
|
|
|
$url = new moodle_url('/report/outline/user.php', array('id'=>$user->id, 'course'=>$course->id, 'mode'=>$mode));
|
|
|
|
redirect($url);
|
2011-11-03 21:53:40 +01:00
|
|
|
}
|
|
|
|
if ($mode === 'todaylogs' or $mode === 'alllogs') {
|
2011-11-03 20:52:00 +01:00
|
|
|
$logmode = ($mode === 'todaylogs') ? 'today' : 'all';
|
|
|
|
$url = new moodle_url('/report/log/user.php', array('id'=>$user->id, 'course'=>$course->id, 'mode'=>$logmode));
|
|
|
|
redirect($url);
|
2011-11-03 21:53:40 +01:00
|
|
|
}
|
|
|
|
if ($mode === 'stats') {
|
2011-11-03 21:28:22 +01:00
|
|
|
$url = new moodle_url('/report/stats/user.php', array('id'=>$user->id, 'course'=>$course->id));
|
|
|
|
redirect($url);
|
2011-11-03 18:48:20 +01:00
|
|
|
}
|
2011-11-03 21:53:40 +01:00
|
|
|
if ($mode === 'coursecompletions' or $mode === 'coursecompletion') {
|
|
|
|
$url = new moodle_url('/report/completion/user.php', array('id'=>$user->id, 'course'=>$course->id));
|
|
|
|
redirect($url);
|
|
|
|
}
|
2011-11-03 18:48:20 +01:00
|
|
|
|
2012-07-23 15:59:04 +08:00
|
|
|
$coursecontext = context_course::instance($course->id);
|
|
|
|
$personalcontext = context_user::instance($user->id);
|
2008-11-30 12:04:27 +00:00
|
|
|
|
2015-03-24 14:40:31 +08:00
|
|
|
$PAGE->set_context($personalcontext);
|
|
|
|
|
2011-12-10 20:18:44 +01:00
|
|
|
$PAGE->set_url('/course/user.php', array('id'=>$id, 'user'=>$user->id, 'mode'=>$mode));
|
|
|
|
|
MDL-21782 reworked enrolment framework, the core infrastructure is in place, the basic plugins are all implemented; see the tracker issue for list of unfinished bits, expect more changes and improvements during the next week
AMOS START
MOV [sendcoursewelcomemessage,core_admin],[sendcoursewelcomemessage,enrol_self]
MOV [configsendcoursewelcomemessage,core_admin],[sendcoursewelcomemessage_desc,enrol_self]
MOV [enrolstartdate,core],[enrolstartdate,enrol_self]
MOV [enrolenddate,core],[enrolenddate,enrol_self]
CPY [welcometocourse,core],[welcometocourse,enrol_self]
CPY [welcometocoursetext,core],[welcometocoursetext,enrol_self]
MOV [notenrollable,core],[notenrollable,core_enrol]
MOV [enrolenddaterror,core],[enrolenddaterror,enrol_self]
MOV [enrolmentkeyhint,core],[passwordinvalidhint,enrol_self]
MOV [coursemanager,core_admin],[coursecontact,core_admin]
MOV [configcoursemanager,core_admin],[coursecontact_desc,core_admin]
MOV [enrolledincourserole,core],[enrolledincourserole,enrol_manual]
MOV [enrolme,core],[enrolme,core_enrol]
MOV [unenrol,core],[unenrol,core_enrol]
MOV [unenrolme,core],[unenrolme,core_enrol]
MOV [enrolmentnew,core],[enrolmentnew,core_enrol]
MOV [enrolmentnewuser,core],[enrolmentnewuser,core_enrol]
MOV [enrolments,core],[enrolments,core_enrol]
MOV [enrolperiod,core],[enrolperiod,core_enrol]
MOV [unenrolroleusers,core],[unenrolroleusers,core_enrol]
AMOS END
2010-06-21 15:30:49 +00:00
|
|
|
require_login();
|
2013-10-19 12:22:12 +02:00
|
|
|
$PAGE->set_pagelayout('report');
|
MDL-21782 reworked enrolment framework, the core infrastructure is in place, the basic plugins are all implemented; see the tracker issue for list of unfinished bits, expect more changes and improvements during the next week
AMOS START
MOV [sendcoursewelcomemessage,core_admin],[sendcoursewelcomemessage,enrol_self]
MOV [configsendcoursewelcomemessage,core_admin],[sendcoursewelcomemessage_desc,enrol_self]
MOV [enrolstartdate,core],[enrolstartdate,enrol_self]
MOV [enrolenddate,core],[enrolenddate,enrol_self]
CPY [welcometocourse,core],[welcometocourse,enrol_self]
CPY [welcometocoursetext,core],[welcometocoursetext,enrol_self]
MOV [notenrollable,core],[notenrollable,core_enrol]
MOV [enrolenddaterror,core],[enrolenddaterror,enrol_self]
MOV [enrolmentkeyhint,core],[passwordinvalidhint,enrol_self]
MOV [coursemanager,core_admin],[coursecontact,core_admin]
MOV [configcoursemanager,core_admin],[coursecontact_desc,core_admin]
MOV [enrolledincourserole,core],[enrolledincourserole,enrol_manual]
MOV [enrolme,core],[enrolme,core_enrol]
MOV [unenrol,core],[unenrol,core_enrol]
MOV [unenrolme,core],[unenrolme,core_enrol]
MOV [enrolmentnew,core],[enrolmentnew,core_enrol]
MOV [enrolmentnewuser,core],[enrolmentnewuser,core_enrol]
MOV [enrolments,core],[enrolments,core_enrol]
MOV [enrolperiod,core],[enrolperiod,core_enrol]
MOV [unenrolroleusers,core],[unenrolroleusers,core_enrol]
AMOS END
2010-06-21 15:30:49 +00:00
|
|
|
if (has_capability('moodle/user:viewuseractivitiesreport', $personalcontext) and !is_enrolled($coursecontext)) {
|
2009-09-25 05:24:13 +00:00
|
|
|
// do not require parents to be enrolled in courses ;-)
|
|
|
|
$PAGE->set_course($course);
|
|
|
|
} else {
|
|
|
|
require_login($course);
|
|
|
|
}
|
2007-09-27 23:37:42 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
if ($user->deleted) {
|
|
|
|
echo $OUTPUT->header();
|
|
|
|
echo $OUTPUT->heading(get_string('userdeleted'));
|
|
|
|
echo $OUTPUT->footer();
|
|
|
|
die;
|
|
|
|
}
|
2008-07-05 14:52:39 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
// prepare list of allowed modes
|
|
|
|
$myreports = ($course->showreports and $USER->id == $user->id);
|
|
|
|
$anyreport = has_capability('moodle/user:viewuseractivitiesreport', $personalcontext);
|
2008-11-30 12:04:27 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
$modes = array();
|
2008-11-30 12:04:27 +00:00
|
|
|
|
2014-08-11 11:53:06 +08:00
|
|
|
// Used for grade reports, it represents whether we should be viewing the report as ourselves, or as the targetted user.
|
|
|
|
$viewasuser = false;
|
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
if (has_capability('moodle/grade:viewall', $coursecontext)) {
|
|
|
|
//ok - can view all course grades
|
|
|
|
$modes[] = 'grade';
|
2008-11-30 12:04:27 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
} else if ($course->showgrades and $user->id == $USER->id and has_capability('moodle/grade:view', $coursecontext)) {
|
|
|
|
//ok - can view own grades
|
|
|
|
$modes[] = 'grade';
|
2008-11-30 12:04:27 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
} else if ($course->showgrades and has_capability('moodle/grade:viewall', $personalcontext)) {
|
|
|
|
// ok - can view grades of this user - parent most probably
|
|
|
|
$modes[] = 'grade';
|
2014-08-11 11:53:06 +08:00
|
|
|
$viewasuser = true;
|
2008-12-01 19:19:29 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
} else if ($course->showgrades and $anyreport) {
|
|
|
|
// ok - can view grades of this user - parent most probably
|
|
|
|
$modes[] = 'grade';
|
2014-08-11 11:53:06 +08:00
|
|
|
$viewasuser = true;
|
2009-09-25 05:24:13 +00:00
|
|
|
}
|
2008-11-30 12:04:27 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
if (empty($modes)) {
|
|
|
|
require_capability('moodle/user:viewuseractivitiesreport', $personalcontext);
|
|
|
|
}
|
2008-11-30 12:04:27 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
if (!in_array($mode, $modes)) {
|
2010-09-17 12:16:27 +00:00
|
|
|
// forbidden or non-existent mode
|
2009-09-25 05:24:13 +00:00
|
|
|
$mode = reset($modes);
|
|
|
|
}
|
2003-10-31 06:45:38 +00:00
|
|
|
|
2014-04-21 18:12:53 +08:00
|
|
|
$eventdata = array(
|
|
|
|
'context' => $coursecontext,
|
|
|
|
'relateduserid' => $user->id,
|
|
|
|
'other' => array('mode' => $mode),
|
|
|
|
);
|
2014-04-03 14:21:00 +08:00
|
|
|
$event = \core\event\course_user_report_viewed::create($eventdata);
|
|
|
|
$event->trigger();
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
$stractivityreport = get_string("activityreport");
|
2009-12-23 01:22:48 +00:00
|
|
|
|
|
|
|
$PAGE->navigation->extend_for_user($user);
|
2011-05-03 15:41:34 +08:00
|
|
|
$PAGE->navigation->set_userid_for_parent_checks($user->id); // see MDL-25805 for reasons and for full commit reference for reversal when fixed.
|
2009-09-25 05:24:13 +00:00
|
|
|
$PAGE->set_title("$course->shortname: $stractivityreport ($mode)");
|
2015-03-24 14:40:31 +08:00
|
|
|
$PAGE->set_heading(fullname($user));
|
2005-03-20 12:02:14 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
switch ($mode) {
|
|
|
|
case "grade":
|
2015-02-05 14:22:34 +08:00
|
|
|
// Change the navigation to point to the my grade node (If we are a student).
|
|
|
|
if ($USER->id == $user->id) {
|
|
|
|
require_once($CFG->dirroot . '/user/lib.php');
|
2015-03-24 14:40:31 +08:00
|
|
|
// Make the dashboard active so that it shows up in the navbar correctly.
|
|
|
|
$gradenode = $PAGE->settingsnav->find('dashboard', null)->make_active();
|
2015-02-05 14:22:34 +08:00
|
|
|
// Get the correct 'My grades' url to point to.
|
|
|
|
$activeurl = user_mygrades_url();
|
2015-03-24 14:40:31 +08:00
|
|
|
$navbar = $PAGE->navbar->add(get_string('mygrades', 'grades'), $activeurl, navigation_node::TYPE_SETTING);
|
|
|
|
$activenode = $navbar->add($course->shortname);
|
2015-02-05 14:22:34 +08:00
|
|
|
$activenode->make_active();
|
|
|
|
// Find the course node and collapse it.
|
|
|
|
$coursenode = $PAGE->navigation->find($course->id, navigation_node::TYPE_COURSE);
|
|
|
|
$coursenode->collapse = true;
|
|
|
|
$coursenode->make_inactive();
|
2015-03-19 10:59:27 +08:00
|
|
|
$url = new moodle_url('/course/user.php', array('id' => $id, 'user' => $user->id, 'mode' => $mode));
|
2015-03-24 14:40:31 +08:00
|
|
|
$reportnode = $activenode->add(get_string('pluginname', 'gradereport_user'), $url);
|
|
|
|
} else {
|
|
|
|
// Check to see if the active node is a user name.
|
|
|
|
$currentcoursenode = $PAGE->navigation->find('currentcourse', null);
|
|
|
|
$activenode = $currentcoursenode->find_active_node();
|
|
|
|
if (strpos($activenode->key, 'user') === false) { // No user name found.
|
|
|
|
$userurl = new moodle_url('/user/view.php', array('id' => $user->id, 'course' => $course->id));
|
|
|
|
// Add the user name.
|
|
|
|
$PAGE->navbar->add(fullname($user), $userurl, navigation_node::TYPE_SETTING);
|
|
|
|
}
|
2015-03-27 16:17:30 +08:00
|
|
|
$gradeurl = new moodle_url('/course/user.php', array('id' => $id, 'user' => $user->id, 'mode' => $mode));
|
2015-03-24 14:40:31 +08:00
|
|
|
// Add the 'grades' node to the navbar.
|
|
|
|
$navbar = $PAGE->navbar->add(get_string('grades', 'grades'), $gradeurl, navigation_node::TYPE_SETTING);
|
2015-02-05 14:22:34 +08:00
|
|
|
}
|
|
|
|
echo $OUTPUT->header();
|
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
if (empty($CFG->grade_profilereport) or !file_exists($CFG->dirroot.'/grade/report/'.$CFG->grade_profilereport.'/lib.php')) {
|
|
|
|
$CFG->grade_profilereport = 'user';
|
|
|
|
}
|
|
|
|
require_once $CFG->libdir.'/gradelib.php';
|
|
|
|
require_once $CFG->dirroot.'/grade/lib.php';
|
|
|
|
require_once $CFG->dirroot.'/grade/report/'.$CFG->grade_profilereport.'/lib.php';
|
|
|
|
|
|
|
|
$functionname = 'grade_report_'.$CFG->grade_profilereport.'_profilereport';
|
|
|
|
if (function_exists($functionname)) {
|
2014-08-11 11:53:06 +08:00
|
|
|
$functionname($course, $user, $viewasuser);
|
2009-09-25 05:24:13 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// can not be reached ;-)
|
2015-02-05 14:22:34 +08:00
|
|
|
// But just incase let's not break the navigation.
|
|
|
|
echo $OUTPUT->header();
|
2009-09-25 05:24:13 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-07-23 16:24:12 +00:00
|
|
|
|
2009-09-25 05:24:13 +00:00
|
|
|
echo $OUTPUT->footer();
|