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.
 
 

124 lines
5.3 KiB

<?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 (totals)
*
* @package report
* @subpackage outline
* @copyright 1999 onwards Martin Dougiamas http://dougiamas.com
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require('../../config.php');
require_once('locallib.php');
$userid = required_param('id', PARAM_INT);
$courseid = required_param('course', PARAM_INT);
$user = $DB->get_record('user', array('id'=>$userid, 'deleted'=>0), '*', MUST_EXIST);
$course = $DB->get_record('course', array('id'=>$courseid), '*', MUST_EXIST);
$coursecontext = context_course::instance($course->id);
$personalcontext = context_user::instance($user->id);
if ($USER->id != $user->id and has_capability('moodle/user:viewuseractivitiesreport', $personalcontext)
and !is_enrolled($coursecontext, $USER) and is_enrolled($coursecontext, $user)) {
//TODO: do not require parents to be enrolled in courses - this is a hack!
require_login();
$PAGE->set_course($course);
} else {
require_login($course);
}
if (!report_messages_can_access_user_report($user, $course, true)) {
require_capability('report/messages:view', $coursecontext);
}
add_to_log($course->id, 'course', 'report messages', "report/messages/user.php?id=$user->id&course=$course->id", $course->id);
$PAGE->set_pagelayout('admin');
$PAGE->set_url('/report/messages/user.php', array('id'=>$user->id, 'course'=>$course->id));
$PAGE->navigation->extend_for_user($user);
$PAGE->navigation->set_userid_for_parent_checks($user->id); // see MDL-25805 for reasons and for full commit reference for reversal when fixed.
$PAGE->set_title($course->shortname.': '.get_string('pluginname', 'report_messages'));
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
echo '<h2>'.get_string('reporttitle','report_messages',array('fullname'=>fullname($user))).'</h2>';
$from = $DB->get_records_sql('select distinct m.useridfrom as id from {message} m where m.useridto = ? and m.useridfrom <> ?', array($user->id, $user->id));
$to = $DB->get_records_sql('select distinct m.useridto as id from {message} m where m.useridfrom = ? and m.useridto <> ?', array($user->id, $user->id));
$contacts = array();
$sqlfullname = $DB->sql_fullname('u.firstname','u.lastname');
$sql = "
select u.id, $sqlfullname as fullname, count(*) as total_messages, u.picture, u.firstname, u.lastname, u.imagealt, u.email
from {user} u, {message} m
where u.id = ? and
((m.useridfrom = ? and m.useridto = ?) or
(m.useridfrom = ? and m.useridto = ?))
group by u.id, u.username, u.firstname, u.lastname, u.email
";
foreach ($from as $u) {
if (is_enrolled($coursecontext, $u)) {
$contacts[$u->id] = $DB->get_record_sql($sql, array($u->id, $u->id, $user->id, $user->id, $u->id));
}
}
foreach ($to as $u) {
if (is_enrolled($coursecontext, $u)) {
$contacts[$u->id] = $DB->get_record_sql($sql, array($u->id, $u->id, $user->id, $user->id, $u->id));
}
}
if (empty($contacts)) {
echo $OUTPUT->notification(get_string('nothingtodisplay'));
} else {
$sqlfromname = $DB->sql_fullname('fu.firstname','fu.lastname');
$sqltoname = $DB->sql_fullname('tu.firstname','tu.lastname');
$sql = "
select m.timecreated, $sqlfromname as fromuser, $sqltoname as touser, m.fullmessage, m.fullmessageformat
from {message} m
inner join {user} fu on fu.id = m.useridfrom
inner join {user} tu on tu.id = m.useridto
where (m.useridfrom = ? and m.useridto = ?) or
(m.useridfrom = ? and m.useridto = ?)
order by m.timecreated desc
";
foreach ($contacts as $contact) {
echo $OUTPUT->box_start();
$upic = $OUTPUT->user_picture($contact);
$ulink = "<a href=\"{$CFG->wwwroot}/user/view.php?id={$contact->id}&course={$course->id}\">{$upic}</a>";
$a = array('userlink'=>$ulink, 'total_messages'=>$contact->total_messages, 'fullname'=>$contact->fullname);
$head = get_string('exchangedmessages', 'report_messages', $a);
echo "<h3>$head</h3>";
$table = new html_table();
$tabl->attributes['class'] = 'generaltable boxaligncenter';
$table->head = array(get_string('date'), get_string('from'), get_string('to'), get_string('message', 'report_messages'));
$messages = $DB->get_records_sql($sql, array($user->id, $contact->id, $contact->id, $user->id));
$table->data = array();
foreach ($messages as $message) {
$table->data[] = array(userdate($message->timecreated), $message->fromuser, $message->touser, format_text($message->fullmessage, $message->fullmessageformat));
}
echo html_writer::table($table);
echo $OUTPUT->box_end();
}
}
echo $OUTPUT->footer();