mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
34 lines
871 B
PHP
34 lines
871 B
PHP
<?PHP // $Id$
|
|
// Displays live view of recent logs
|
|
|
|
require_once("../config.php");
|
|
require_once("lib.php");
|
|
|
|
require_variable($id);
|
|
|
|
require_login();
|
|
|
|
if (! $course = get_record("course", "id", $id) ) {
|
|
error("That's an invalid course id");
|
|
}
|
|
|
|
if (! isteacher($course->id)) {
|
|
error("Only teachers can view logs");
|
|
}
|
|
|
|
$strlivelogs = get_string("livelogs");
|
|
$strupdatesevery = get_string("updatesevery", "moodle", COURSE_LIVELOG_REFRESH);
|
|
|
|
print_header("$strlivelogs ($strupdatesevery)", "$strlivelogs", "", "",
|
|
"<META HTTP-EQUIV='Refresh' CONTENT='".COURSE_LIVELOG_REFRESH."; URL=loglive.php?id=$id'>");
|
|
|
|
$user=0;
|
|
$date=time() - 3600;
|
|
|
|
print_log($course, $user, $date, "l.time DESC", 0, 500,
|
|
"loglive.php?id=$course->id&user=$user&date=$date");
|
|
|
|
exit;
|
|
|
|
?>
|