2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Display user activity reports for a course
20 * @copyright 1999 Martin Dougiamas http://dougiamas.com
21 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once("../config.php");
26 require_once("lib.php");
28 $id = required_param('id',PARAM_INT
); // course id
29 $user = required_param('user',PARAM_INT
); // user id
30 $mode = optional_param('mode', "todaylogs", PARAM_ALPHA
);
32 $url = new moodle_url('/course/user.php', array('id'=>$id,'user'=>$user, 'mode'=>$mode));
34 $course = $DB->get_record('course', array('id'=>$id), '*', MUST_EXIST
);
35 $user = $DB->get_record("user", array("id"=>$user, 'deleted'=>0), '*', MUST_EXIST
);
37 if ($mode === 'outline' or $mode === 'complete') {
38 $url = new moodle_url('/report/outline/user.php', array('id'=>$user->id
, 'course'=>$course->id
, 'mode'=>$mode));
41 if ($mode === 'todaylogs' or $mode === 'alllogs') {
42 $logmode = ($mode === 'todaylogs') ?
'today' : 'all';
43 $url = new moodle_url('/report/log/user.php', array('id'=>$user->id
, 'course'=>$course->id
, 'mode'=>$logmode));
46 if ($mode === 'stats') {
47 $url = new moodle_url('/report/stats/user.php', array('id'=>$user->id
, 'course'=>$course->id
));
50 if ($mode === 'coursecompletions' or $mode === 'coursecompletion') {
51 $url = new moodle_url('/report/completion/user.php', array('id'=>$user->id
, 'course'=>$course->id
));
55 $coursecontext = context_course
::instance($course->id
);
56 $personalcontext = context_user
::instance($user->id
);
59 $PAGE->set_context($personalcontext);
60 $PAGE->set_heading(fullname($user));
62 $PAGE->set_context($coursecontext);
63 $PAGE->set_secondary_active_tab('participants');
64 $PAGE->set_heading($course->fullname
);
67 $PAGE->set_url('/course/user.php', array('id'=>$id, 'user'=>$user->id
, 'mode'=>$mode));
70 $PAGE->set_pagelayout('report');
71 if (has_capability('moodle/user:viewuseractivitiesreport', $personalcontext) and !is_enrolled($coursecontext)) {
72 // do not require parents to be enrolled in courses ;-)
73 $PAGE->set_course($course);
75 require_login($course);
79 echo $OUTPUT->header();
80 echo $OUTPUT->heading(get_string('userdeleted'));
81 echo $OUTPUT->footer();
85 // prepare list of allowed modes
86 $myreports = ($course->showreports
and $USER->id
== $user->id
);
87 $anyreport = has_capability('moodle/user:viewuseractivitiesreport', $personalcontext);
91 // Used for grade reports, it represents whether we should be viewing the report as ourselves, or as the targetted user.
94 if (has_capability('moodle/grade:viewall', $coursecontext)) {
95 //ok - can view all course grades
98 } else if ($course->showgrades
and $user->id
== $USER->id
and has_capability('moodle/grade:view', $coursecontext)) {
99 //ok - can view own grades
102 } else if ($course->showgrades
and has_capability('moodle/grade:viewall', $personalcontext)) {
103 // ok - can view grades of this user - parent most probably
107 } else if ($course->showgrades
and $anyreport) {
108 // ok - can view grades of this user - parent most probably
114 require_capability('moodle/user:viewuseractivitiesreport', $personalcontext);
117 if (!in_array($mode, $modes)) {
118 // forbidden or non-existent mode
119 $mode = reset($modes);
123 'context' => $coursecontext,
124 'relateduserid' => $user->id
,
125 'other' => array('mode' => $mode),
127 $event = \core\event\course_user_report_viewed
::create($eventdata);
130 $stractivityreport = get_string("activityreport");
132 $PAGE->navigation
->extend_for_user($user);
133 $PAGE->navigation
->set_userid_for_parent_checks($user->id
); // see MDL-25805 for reasons and for full commit reference for reversal when fixed.
134 $PAGE->set_title("$course->shortname: $stractivityreport ($mode)");
138 // Change the navigation to point to the my grade node (If we are a student).
139 if ($USER->id
== $user->id
) {
140 require_once($CFG->dirroot
. '/user/lib.php');
141 // Make the dashboard active so that it shows up in the navbar correctly.
142 $gradenode = $PAGE->settingsnav
->find('dashboard', null)->make_active();
143 // Get the correct 'Grades' url to point to.
144 $activeurl = user_mygrades_url();
145 $navbar = $PAGE->navbar
->add(get_string('grades', 'grades'), $activeurl, navigation_node
::TYPE_SETTING
);
146 $activenode = $navbar->add($course->shortname
);
147 $activenode->make_active();
148 // Find the course node and collapse it.
149 $coursenode = $PAGE->navigation
->find($course->id
, navigation_node
::TYPE_COURSE
);
150 $coursenode->collapse
= true;
151 $coursenode->make_inactive();
152 $url = new moodle_url('/course/user.php', array('id' => $id, 'user' => $user->id
, 'mode' => $mode));
153 $reportnode = $activenode->add(get_string('pluginname', 'gradereport_user'), $url);
155 if ($course->id
== SITEID
) {
156 $activenode = $PAGE->navigation
->find('user' . $user->id
, null);
158 $currentcoursenode = $PAGE->navigation
->find($course->id
, navigation_node
::TYPE_COURSE
);
159 $activenode = $currentcoursenode->find_active_node();
162 // Check to see if the active node is a user name.
163 if (!preg_match('/^user\d{0,}$/', $activenode->key
)) { // No user name found.
164 $userurl = new moodle_url('/user/view.php', array('id' => $user->id
, 'course' => $course->id
));
165 // Add the user name.
166 $PAGE->navbar
->add(fullname($user), $userurl, navigation_node
::TYPE_SETTING
);
168 $PAGE->navbar
->add(get_string('report'));
169 $gradeurl = new moodle_url('/course/user.php', array('id' => $id, 'user' => $user->id
, 'mode' => $mode));
170 // Add the 'grades' node to the navbar.
171 $navbar = $PAGE->navbar
->add(get_string('grades', 'grades'), $gradeurl, navigation_node
::TYPE_SETTING
);
173 echo $OUTPUT->header();
175 if ($course->id
!== SITEID
) {
176 $backurl = new moodle_url('/user/view.php', ['id' => $user->id
, 'course' => $course->id
]);
177 echo $OUTPUT->single_button($backurl, get_string('back'), 'get', ['class' => 'mb-3']);
178 $userheading = array(
179 'heading' => fullname($user, has_capability('moodle/site:viewfullnames', $PAGE->context
)),
181 'usercontext' => $personalcontext,
183 echo $OUTPUT->context_header($userheading, 2);
185 echo $OUTPUT->heading(get_string('grades', 'moodle'), 2, 'main mt-4 mb-4');
188 if (empty($CFG->grade_profilereport
) or !file_exists($CFG->dirroot
.'/grade/report/'.$CFG->grade_profilereport
.'/lib.php')) {
189 $CFG->grade_profilereport
= 'user';
191 require_once $CFG->libdir
.'/gradelib.php';
192 require_once $CFG->dirroot
.'/grade/lib.php';
193 require_once $CFG->dirroot
.'/grade/report/'.$CFG->grade_profilereport
.'/lib.php';
195 // User must be able to view this grade report.
197 require_capability('gradereport/' . $CFG->grade_profilereport
. ':view', $coursecontext);
200 $functionname = 'grade_report_'.$CFG->grade_profilereport
.'_profilereport';
201 if (function_exists($functionname)) {
202 $functionname($course, $user, $viewasuser);
207 // It's unlikely to reach this piece of code, as the mode is never empty and it sets mode as grade in most of the cases.
208 // Display the page header to avoid breaking the navigation. A course/user.php review will be done in MDL-49939.
209 echo $OUTPUT->header();
213 echo $OUTPUT->footer();