2006-04-20 22:36:22 +00:00
|
|
|
<?php // $Id$
|
2006-03-09 09:45:57 +00:00
|
|
|
|
2007-01-04 03:22:51 +00:00
|
|
|
function print_mnet_log_selector_form($hostid, $course, $selecteduser=0, $selecteddate='today',
|
|
|
|
$modname="", $modid=0, $modaction='', $selectedgroup=-1, $showcourses=0, $showusers=0, $logformat='showashtml') {
|
|
|
|
|
2008-05-29 15:12:08 +00:00
|
|
|
global $USER, $CFG, $SITE, $DB;
|
2007-01-04 03:22:51 +00:00
|
|
|
require_once $CFG->dirroot.'/mnet/peer.php';
|
|
|
|
|
|
|
|
$mnet_peer = new mnet_peer();
|
|
|
|
$mnet_peer->set_id($hostid);
|
|
|
|
|
2008-05-31 14:35:58 +00:00
|
|
|
$sql = "SELECT DISTINCT course, hostid, coursename FROM {mnet_log}";
|
|
|
|
$courses = $DB->get_records_sql($sql);
|
2007-01-04 03:22:51 +00:00
|
|
|
$remotecoursecount = count($courses);
|
|
|
|
|
|
|
|
// first check to see if we can override showcourses and showusers
|
2008-05-31 14:35:58 +00:00
|
|
|
$numcourses = $remotecoursecount + $DB->count_records('course');
|
2007-01-04 03:22:51 +00:00
|
|
|
if ($numcourses < COURSE_MAX_COURSES_PER_DROPDOWN && !$showcourses) {
|
|
|
|
$showcourses = 1;
|
|
|
|
}
|
|
|
|
|
2008-04-23 08:07:42 +00:00
|
|
|
$sitecontext = get_context_instance(CONTEXT_SYSTEM);
|
2007-01-04 03:22:51 +00:00
|
|
|
|
|
|
|
// Context for remote data is always SITE
|
|
|
|
// Groups for remote data are always OFF
|
|
|
|
if ($hostid == $CFG->mnet_localhost_id) {
|
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
|
|
|
|
/// Setup for group handling.
|
|
|
|
if ($course->groupmode == SEPARATEGROUPS and !has_capability('moodle/site:accessallgroups', $context)) {
|
|
|
|
$selectedgroup = get_current_group($course->id);
|
|
|
|
$showgroups = false;
|
|
|
|
}
|
|
|
|
else if ($course->groupmode) {
|
|
|
|
$selectedgroup = ($selectedgroup == -1) ? get_current_group($course->id) : $selectedgroup;
|
|
|
|
$showgroups = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$selectedgroup = 0;
|
|
|
|
$showgroups = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$context = $sitecontext;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get all the possible users
|
|
|
|
$users = array();
|
|
|
|
|
|
|
|
// If looking at a different host, we're interested in all our site users
|
2007-02-01 09:06:48 +00:00
|
|
|
if ($hostid == $CFG->mnet_localhost_id && $course->id != SITEID) {
|
2009-01-14 18:07:31 +00:00
|
|
|
$courseusers = get_users_by_capability($context, 'moodle/course:view', 'u.id, u.firstname, u.lastname, u.idnumber', 'lastname ASC, firstname ASC', '','', $selectedgroup,'', false);
|
2007-01-04 03:22:51 +00:00
|
|
|
} else {
|
2008-05-25 11:18:12 +00:00
|
|
|
// this may be a lot of users :-(
|
2008-05-29 15:12:08 +00:00
|
|
|
$courseusers = $DB->get_records('user', array('deleted'=>0), 'lastaccess DESC', 'id, firstname, lastname, idnumber');
|
2007-01-04 03:22:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count($courseusers) < COURSE_MAX_USERS_PER_DROPDOWN && !$showusers) {
|
|
|
|
$showusers = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($showusers) {
|
|
|
|
if ($courseusers) {
|
|
|
|
foreach ($courseusers as $courseuser) {
|
|
|
|
$users[$courseuser->id] = fullname($courseuser, has_capability('moodle/site:viewfullnames', $context));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($guest = get_guest()) {
|
|
|
|
$users[$guest->id] = fullname($guest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-11 05:59:57 +00:00
|
|
|
// Get all the hosts that have log records
|
|
|
|
$sql = "select distinct
|
|
|
|
h.id,
|
|
|
|
h.name
|
|
|
|
from
|
2008-05-31 14:35:58 +00:00
|
|
|
{mnet_host} h,
|
|
|
|
{mnet_log} l
|
2007-01-11 05:59:57 +00:00
|
|
|
where
|
|
|
|
h.id = l.hostid
|
|
|
|
order by
|
|
|
|
h.name";
|
2007-01-04 03:22:51 +00:00
|
|
|
|
2008-05-31 14:35:58 +00:00
|
|
|
if ($hosts = $DB->get_records_sql($sql)) {
|
2007-01-15 07:59:28 +00:00
|
|
|
foreach($hosts as $host) {
|
|
|
|
$hostarray[$host->id] = $host->name;
|
|
|
|
}
|
2007-01-04 03:22:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$hostarray[$CFG->mnet_localhost_id] = $SITE->fullname;
|
|
|
|
asort($hostarray);
|
|
|
|
|
|
|
|
foreach($hostarray as $hostid => $name) {
|
|
|
|
$courses = array();
|
|
|
|
$sites = array();
|
|
|
|
if ($CFG->mnet_localhost_id == $hostid) {
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext) && $showcourses) {
|
2008-05-31 14:35:58 +00:00
|
|
|
if ($ccc = $DB->get_records("course", null, "fullname","id,fullname,category")) {
|
2007-01-04 03:22:51 +00:00
|
|
|
foreach ($ccc as $cc) {
|
2007-01-15 21:28:25 +00:00
|
|
|
if ($cc->id == SITEID) {
|
2007-03-15 16:03:44 +00:00
|
|
|
$sites["$hostid/$cc->id"] = format_string($cc->fullname).' ('.get_string('site').')';
|
2007-01-04 03:22:51 +00:00
|
|
|
} else {
|
2007-03-15 16:03:44 +00:00
|
|
|
$courses["$hostid/$cc->id"] = format_string($cc->fullname);
|
2007-01-04 03:22:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext) && $showcourses) {
|
2008-05-31 14:35:58 +00:00
|
|
|
$sql = "SELECT DISTINCT course, coursename FROM {mnet_log} where hostid = ?";
|
|
|
|
if ($ccc = $DB->get_records_sql($sql, array($hostid))) {
|
2007-01-04 03:22:51 +00:00
|
|
|
foreach ($ccc as $cc) {
|
2007-01-15 21:28:25 +00:00
|
|
|
if (1 == $cc->course) { // TODO: this might be wrong - site course may have another id
|
|
|
|
$sites["$hostid/$cc->course"] = $cc->coursename.' ('.get_string('site').')';
|
2007-01-04 03:22:51 +00:00
|
|
|
} else {
|
2007-01-15 21:28:25 +00:00
|
|
|
$courses["$hostid/$cc->course"] = $cc->coursename;
|
2007-01-04 03:22:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
asort($courses);
|
|
|
|
$dropdown[$name] = $sites + $courses;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$activities = array();
|
|
|
|
$selectedactivity = "";
|
|
|
|
|
|
|
|
/// Casting $course->modinfo to string prevents one notice when the field is null
|
|
|
|
if ($modinfo = unserialize((string)$course->modinfo)) {
|
|
|
|
$section = 0;
|
|
|
|
if ($course->format == 'weeks') { // Bodgy
|
|
|
|
$strsection = get_string("week");
|
|
|
|
} else {
|
|
|
|
$strsection = get_string("topic");
|
|
|
|
}
|
|
|
|
foreach ($modinfo as $mod) {
|
|
|
|
if ($mod->mod == "label") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ($mod->section > 0 and $section <> $mod->section) {
|
|
|
|
$activities["section/$mod->section"] = "-------------- $strsection $mod->section --------------";
|
|
|
|
}
|
|
|
|
$section = $mod->section;
|
|
|
|
$mod->name = strip_tags(format_string(urldecode($mod->name),true));
|
|
|
|
if (strlen($mod->name) > 55) {
|
|
|
|
$mod->name = substr($mod->name, 0, 50)."...";
|
|
|
|
}
|
|
|
|
if (!$mod->visible) {
|
|
|
|
$mod->name = "(".$mod->name.")";
|
|
|
|
}
|
|
|
|
$activities["$mod->cm"] = $mod->name;
|
|
|
|
|
|
|
|
if ($mod->cm == $modid) {
|
|
|
|
$selectedactivity = "$mod->cm";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext) && !$course->category) {
|
2007-01-04 03:22:51 +00:00
|
|
|
$activities["site_errors"] = get_string("siteerrors");
|
|
|
|
if ($modid === "site_errors") {
|
|
|
|
$selectedactivity = "site_errors";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$strftimedate = get_string("strftimedate");
|
|
|
|
$strftimedaydate = get_string("strftimedaydate");
|
|
|
|
|
|
|
|
asort($users);
|
|
|
|
|
|
|
|
// Prepare the list of action options.
|
|
|
|
$actions = array(
|
|
|
|
'view' => get_string('view'),
|
|
|
|
'add' => get_string('add'),
|
|
|
|
'update' => get_string('update'),
|
|
|
|
'delete' => get_string('delete'),
|
|
|
|
'-view' => get_string('allchanges')
|
|
|
|
);
|
|
|
|
|
|
|
|
// Get all the possible dates
|
|
|
|
// Note that we are keeping track of real (GMT) time and user time
|
|
|
|
// User time is only used in displays - all calcs and passing is GMT
|
|
|
|
|
|
|
|
$timenow = time(); // GMT
|
|
|
|
|
|
|
|
// What day is it now for the user, and when is midnight that day (in GMT).
|
|
|
|
$timemidnight = $today = usergetmidnight($timenow);
|
|
|
|
|
|
|
|
// Put today up the top of the list
|
|
|
|
$dates = array("$timemidnight" => get_string("today").", ".userdate($timenow, $strftimedate) );
|
|
|
|
|
|
|
|
if (!$course->startdate or ($course->startdate > $timenow)) {
|
|
|
|
$course->startdate = $course->timecreated;
|
|
|
|
}
|
|
|
|
|
|
|
|
$numdates = 1;
|
|
|
|
while ($timemidnight > $course->startdate and $numdates < 365) {
|
|
|
|
$timemidnight = $timemidnight - 86400;
|
|
|
|
$timenow = $timenow - 86400;
|
|
|
|
$dates["$timemidnight"] = userdate($timenow, $strftimedaydate);
|
|
|
|
$numdates++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($selecteddate == "today") {
|
|
|
|
$selecteddate = $today;
|
|
|
|
}
|
|
|
|
|
2007-01-15 21:28:25 +00:00
|
|
|
echo "<form class=\"logselectform\" action=\"$CFG->wwwroot/course/report/log/index.php\" method=\"get\">\n";
|
|
|
|
echo "<div>\n";//invisible fieldset here breaks wrapping
|
2007-01-04 03:22:51 +00:00
|
|
|
echo "<input type=\"hidden\" name=\"chooselog\" value=\"1\" />\n";
|
|
|
|
echo "<input type=\"hidden\" name=\"showusers\" value=\"$showusers\" />\n";
|
|
|
|
echo "<input type=\"hidden\" name=\"showcourses\" value=\"$showcourses\" />\n";
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext) && $showcourses) {
|
2007-01-04 03:22:51 +00:00
|
|
|
$cid = empty($course->id)? '1' : $course->id;
|
|
|
|
choose_from_menu_nested($dropdown, "host_course", $hostid.'/'.$cid, "");
|
|
|
|
} else {
|
|
|
|
$courses = array();
|
2007-01-15 21:28:25 +00:00
|
|
|
$courses[$course->id] = $course->fullname . ((empty($course->category)) ? ' ('.get_string('site').') ' : '');
|
2007-01-04 03:22:51 +00:00
|
|
|
choose_from_menu($courses,"id",$course->id,false);
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext)) {
|
2007-01-15 21:28:25 +00:00
|
|
|
$a = new object();
|
2007-01-04 03:22:51 +00:00
|
|
|
$a->url = "$CFG->wwwroot/course/report/log/index.php?chooselog=0&group=$selectedgroup&user=$selecteduser"
|
|
|
|
."&id=$course->id&date=$selecteddate&modid=$selectedactivity&showcourses=1&showusers=$showusers";
|
|
|
|
print_string('logtoomanycourses','moodle',$a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($showgroups) {
|
2007-08-15 20:21:01 +00:00
|
|
|
if ($cgroups = groups_get_all_groups($course->id)) {
|
2007-01-04 03:22:51 +00:00
|
|
|
foreach ($cgroups as $cgroup) {
|
|
|
|
$groups[$cgroup->id] = $cgroup->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$groups = array();
|
|
|
|
}
|
|
|
|
choose_from_menu ($groups, "group", $selectedgroup, get_string("allgroups") );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($showusers) {
|
|
|
|
choose_from_menu ($users, "user", $selecteduser, get_string("allparticipants") );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$users = array();
|
|
|
|
if (!empty($selecteduser)) {
|
2008-05-31 14:35:58 +00:00
|
|
|
$user = $DB->get_record('user', array('id'=>$selecteduser));
|
2007-01-04 03:22:51 +00:00
|
|
|
$users[$selecteduser] = fullname($user);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$users[0] = get_string('allparticipants');
|
|
|
|
}
|
|
|
|
choose_from_menu($users, 'user', $selecteduser, false);
|
|
|
|
$a->url = "$CFG->wwwroot/course/report/log/index.php?chooselog=0&group=$selectedgroup&user=$selecteduser"
|
|
|
|
."&id=$course->id&date=$selecteddate&modid=$selectedactivity&showusers=1&showcourses=$showcourses";
|
|
|
|
print_string('logtoomanyusers','moodle',$a);
|
|
|
|
}
|
|
|
|
choose_from_menu ($dates, "date", $selecteddate, get_string("alldays"));
|
|
|
|
choose_from_menu ($activities, "modid", $selectedactivity, get_string("allactivities"), "", "");
|
|
|
|
choose_from_menu ($actions, 'modaction', $modaction, get_string("allactions"));
|
|
|
|
|
|
|
|
$logformats = array('showashtml' => get_string('displayonpage'),
|
|
|
|
'downloadascsv' => get_string('downloadtext'),
|
2007-01-15 21:28:25 +00:00
|
|
|
'downloadasods' => get_string('downloadods'),
|
2007-01-04 03:22:51 +00:00
|
|
|
'downloadasexcel' => get_string('downloadexcel'));
|
|
|
|
choose_from_menu ($logformats, 'logformat', $logformat, false);
|
|
|
|
echo '<input type="submit" value="'.get_string('gettheselogs').'" />';
|
2007-01-15 21:28:25 +00:00
|
|
|
echo '</div>';
|
|
|
|
echo '</form>';
|
2007-01-04 03:22:51 +00:00
|
|
|
}
|
|
|
|
|
2006-05-15 05:01:00 +00:00
|
|
|
function print_log_selector_form($course, $selecteduser=0, $selecteddate='today',
|
|
|
|
$modname="", $modid=0, $modaction='', $selectedgroup=-1, $showcourses=0, $showusers=0, $logformat='showashtml') {
|
2006-03-09 09:45:57 +00:00
|
|
|
|
2008-05-25 11:18:12 +00:00
|
|
|
global $USER, $CFG, $DB;
|
2006-03-09 09:45:57 +00:00
|
|
|
|
|
|
|
// first check to see if we can override showcourses and showusers
|
2008-05-31 14:35:58 +00:00
|
|
|
$numcourses = $DB->count_records("course");
|
2006-03-09 09:45:57 +00:00
|
|
|
if ($numcourses < COURSE_MAX_COURSES_PER_DROPDOWN && !$showcourses) {
|
|
|
|
$showcourses = 1;
|
|
|
|
}
|
2006-09-08 08:46:26 +00:00
|
|
|
|
2008-04-23 08:07:42 +00:00
|
|
|
$sitecontext = get_context_instance(CONTEXT_SYSTEM);
|
2006-09-06 08:55:23 +00:00
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
|
2006-03-09 09:45:57 +00:00
|
|
|
/// Setup for group handling.
|
2006-09-06 08:55:23 +00:00
|
|
|
if ($course->groupmode == SEPARATEGROUPS and !has_capability('moodle/site:accessallgroups', $context)) {
|
2006-03-09 09:45:57 +00:00
|
|
|
$selectedgroup = get_current_group($course->id);
|
|
|
|
$showgroups = false;
|
|
|
|
}
|
|
|
|
else if ($course->groupmode) {
|
|
|
|
$selectedgroup = ($selectedgroup == -1) ? get_current_group($course->id) : $selectedgroup;
|
|
|
|
$showgroups = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$selectedgroup = 0;
|
|
|
|
$showgroups = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get all the possible users
|
|
|
|
$users = array();
|
|
|
|
|
2006-11-12 08:55:13 +00:00
|
|
|
if ($course->id != SITEID) {
|
2008-05-25 09:39:02 +00:00
|
|
|
$courseusers = get_users_by_capability($context, 'moodle/course:view', '', 'lastname ASC, firstname ASC', '','u.id, u.firstname, u.lastname, u.idnumber',$selectedgroup,null, false);
|
2006-03-09 09:45:57 +00:00
|
|
|
} else {
|
2008-05-25 11:18:12 +00:00
|
|
|
// this may be a lot of users :-(
|
2008-05-29 15:12:49 +00:00
|
|
|
$courseusers = $DB->get_records('user', array('deleted'=>0), 'lastaccess DESC', 'id, firstname, lastname, idnumber');
|
2006-03-09 09:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count($courseusers) < COURSE_MAX_USERS_PER_DROPDOWN && !$showusers) {
|
|
|
|
$showusers = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($showusers) {
|
|
|
|
if ($courseusers) {
|
|
|
|
foreach ($courseusers as $courseuser) {
|
2006-09-06 08:55:23 +00:00
|
|
|
$users[$courseuser->id] = fullname($courseuser, has_capability('moodle/site:viewfullnames', $context));
|
2006-03-09 09:45:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($guest = get_guest()) {
|
|
|
|
$users[$guest->id] = fullname($guest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext) && $showcourses) {
|
2008-05-31 14:35:58 +00:00
|
|
|
if ($ccc = $DB->get_records("course", null, "fullname", "id,fullname,category")) {
|
2006-03-09 09:45:57 +00:00
|
|
|
foreach ($ccc as $cc) {
|
|
|
|
if ($cc->category) {
|
2007-03-15 16:03:44 +00:00
|
|
|
$courses["$cc->id"] = format_string($cc->fullname);
|
2006-03-09 09:45:57 +00:00
|
|
|
} else {
|
2007-03-15 16:03:44 +00:00
|
|
|
$courses["$cc->id"] = format_string($cc->fullname) . ' (Site)';
|
2006-03-09 09:45:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
asort($courses);
|
|
|
|
}
|
|
|
|
|
|
|
|
$activities = array();
|
|
|
|
$selectedactivity = "";
|
|
|
|
|
2006-09-04 21:12:37 +00:00
|
|
|
/// Casting $course->modinfo to string prevents one notice when the field is null
|
|
|
|
if ($modinfo = unserialize((string)$course->modinfo)) {
|
2006-03-09 09:45:57 +00:00
|
|
|
$section = 0;
|
|
|
|
if ($course->format == 'weeks') { // Bodgy
|
|
|
|
$strsection = get_string("week");
|
|
|
|
} else {
|
|
|
|
$strsection = get_string("topic");
|
|
|
|
}
|
|
|
|
foreach ($modinfo as $mod) {
|
|
|
|
if ($mod->mod == "label") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ($mod->section > 0 and $section <> $mod->section) {
|
|
|
|
$activities["section/$mod->section"] = "-------------- $strsection $mod->section --------------";
|
|
|
|
}
|
|
|
|
$section = $mod->section;
|
|
|
|
$mod->name = strip_tags(format_string(urldecode($mod->name),true));
|
|
|
|
if (strlen($mod->name) > 55) {
|
|
|
|
$mod->name = substr($mod->name, 0, 50)."...";
|
|
|
|
}
|
|
|
|
if (!$mod->visible) {
|
|
|
|
$mod->name = "(".$mod->name.")";
|
|
|
|
}
|
|
|
|
$activities["$mod->cm"] = $mod->name;
|
|
|
|
|
|
|
|
if ($mod->cm == $modid) {
|
|
|
|
$selectedactivity = "$mod->cm";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext) && ($course->id == SITEID)) {
|
2006-03-09 09:45:57 +00:00
|
|
|
$activities["site_errors"] = get_string("siteerrors");
|
|
|
|
if ($modid === "site_errors") {
|
|
|
|
$selectedactivity = "site_errors";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$strftimedate = get_string("strftimedate");
|
|
|
|
$strftimedaydate = get_string("strftimedaydate");
|
|
|
|
|
|
|
|
asort($users);
|
|
|
|
|
2006-03-28 17:33:40 +00:00
|
|
|
// Prepare the list of action options.
|
|
|
|
$actions = array(
|
|
|
|
'view' => get_string('view'),
|
|
|
|
'add' => get_string('add'),
|
|
|
|
'update' => get_string('update'),
|
|
|
|
'delete' => get_string('delete'),
|
|
|
|
'-view' => get_string('allchanges')
|
|
|
|
);
|
|
|
|
|
2006-03-09 09:45:57 +00:00
|
|
|
// Get all the possible dates
|
|
|
|
// Note that we are keeping track of real (GMT) time and user time
|
|
|
|
// User time is only used in displays - all calcs and passing is GMT
|
|
|
|
|
|
|
|
$timenow = time(); // GMT
|
|
|
|
|
|
|
|
// What day is it now for the user, and when is midnight that day (in GMT).
|
|
|
|
$timemidnight = $today = usergetmidnight($timenow);
|
|
|
|
|
|
|
|
// Put today up the top of the list
|
|
|
|
$dates = array("$timemidnight" => get_string("today").", ".userdate($timenow, $strftimedate) );
|
|
|
|
|
|
|
|
if (!$course->startdate or ($course->startdate > $timenow)) {
|
|
|
|
$course->startdate = $course->timecreated;
|
|
|
|
}
|
|
|
|
|
|
|
|
$numdates = 1;
|
|
|
|
while ($timemidnight > $course->startdate and $numdates < 365) {
|
|
|
|
$timemidnight = $timemidnight - 86400;
|
|
|
|
$timenow = $timenow - 86400;
|
|
|
|
$dates["$timemidnight"] = userdate($timenow, $strftimedaydate);
|
|
|
|
$numdates++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($selecteddate == "today") {
|
|
|
|
$selecteddate = $today;
|
|
|
|
}
|
|
|
|
|
2007-01-15 21:28:25 +00:00
|
|
|
echo "<form class=\"logselectform\" action=\"$CFG->wwwroot/course/report/log/index.php\" method=\"get\">\n";
|
|
|
|
echo "<div>\n";
|
2006-03-09 09:45:57 +00:00
|
|
|
echo "<input type=\"hidden\" name=\"chooselog\" value=\"1\" />\n";
|
|
|
|
echo "<input type=\"hidden\" name=\"showusers\" value=\"$showusers\" />\n";
|
|
|
|
echo "<input type=\"hidden\" name=\"showcourses\" value=\"$showcourses\" />\n";
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext) && $showcourses) {
|
2006-03-09 09:45:57 +00:00
|
|
|
choose_from_menu ($courses, "id", $course->id, "");
|
|
|
|
} else {
|
|
|
|
// echo '<input type="hidden" name="id" value="'.$course->id.'" />';
|
|
|
|
$courses = array();
|
2007-01-15 21:28:25 +00:00
|
|
|
$courses[$course->id] = $course->fullname . (($course->id == SITEID) ? ' ('.get_string('site').') ' : '');
|
2006-03-09 09:45:57 +00:00
|
|
|
choose_from_menu($courses,"id",$course->id,false);
|
2008-11-29 14:22:10 +00:00
|
|
|
if (has_capability('coursereport/log:view', $sitecontext)) {
|
2007-01-15 21:28:25 +00:00
|
|
|
$a = new object();
|
2006-03-15 08:05:34 +00:00
|
|
|
$a->url = "$CFG->wwwroot/course/report/log/index.php?chooselog=0&group=$selectedgroup&user=$selecteduser"
|
2006-03-09 09:45:57 +00:00
|
|
|
."&id=$course->id&date=$selecteddate&modid=$selectedactivity&showcourses=1&showusers=$showusers";
|
|
|
|
print_string('logtoomanycourses','moodle',$a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($showgroups) {
|
2007-08-15 20:21:01 +00:00
|
|
|
if ($cgroups = groups_get_all_groups($course->id)) {
|
2006-03-09 09:45:57 +00:00
|
|
|
foreach ($cgroups as $cgroup) {
|
|
|
|
$groups[$cgroup->id] = $cgroup->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$groups = array();
|
|
|
|
}
|
|
|
|
choose_from_menu ($groups, "group", $selectedgroup, get_string("allgroups") );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($showusers) {
|
|
|
|
choose_from_menu ($users, "user", $selecteduser, get_string("allparticipants") );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$users = array();
|
|
|
|
if (!empty($selecteduser)) {
|
2008-05-31 14:35:58 +00:00
|
|
|
$user = $DB->get_record('user', array('id'=>$selecteduser));
|
2006-03-09 09:45:57 +00:00
|
|
|
$users[$selecteduser] = fullname($user);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$users[0] = get_string('allparticipants');
|
|
|
|
}
|
2006-05-15 05:01:00 +00:00
|
|
|
choose_from_menu($users, 'user', $selecteduser, false);
|
2007-01-15 21:28:25 +00:00
|
|
|
$a = new object();
|
2006-03-15 08:05:34 +00:00
|
|
|
$a->url = "$CFG->wwwroot/course/report/log/index.php?chooselog=0&group=$selectedgroup&user=$selecteduser"
|
2006-03-09 09:45:57 +00:00
|
|
|
."&id=$course->id&date=$selecteddate&modid=$selectedactivity&showusers=1&showcourses=$showcourses";
|
|
|
|
print_string('logtoomanyusers','moodle',$a);
|
|
|
|
}
|
|
|
|
choose_from_menu ($dates, "date", $selecteddate, get_string("alldays"));
|
|
|
|
choose_from_menu ($activities, "modid", $selectedactivity, get_string("allactivities"), "", "");
|
2006-03-28 17:33:40 +00:00
|
|
|
choose_from_menu ($actions, 'modaction', $modaction, get_string("allactions"));
|
2006-05-15 05:01:00 +00:00
|
|
|
|
|
|
|
$logformats = array('showashtml' => get_string('displayonpage'),
|
|
|
|
'downloadascsv' => get_string('downloadtext'),
|
2006-12-21 10:58:18 +00:00
|
|
|
'downloadasods' => get_string('downloadods'),
|
2006-05-15 05:01:00 +00:00
|
|
|
'downloadasexcel' => get_string('downloadexcel'));
|
|
|
|
choose_from_menu ($logformats, 'logformat', $logformat, false);
|
|
|
|
echo '<input type="submit" value="'.get_string('gettheselogs').'" />';
|
2007-01-15 21:28:25 +00:00
|
|
|
echo '</div>';
|
|
|
|
echo '</form>';
|
2006-03-09 09:45:57 +00:00
|
|
|
}
|
|
|
|
|
2006-09-04 21:12:37 +00:00
|
|
|
?>
|