mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
|
<?PHP // $Id$
|
||
|
|
||
|
require_once("../../config.php");
|
||
|
|
||
|
optional_variable($id); // Course Module ID, or
|
||
|
optional_variable($l); // Label ID
|
||
|
|
||
|
if ($id) {
|
||
|
if (! $cm = get_record("course_modules", "id", $id)) {
|
||
|
error("Course Module ID was incorrect");
|
||
|
}
|
||
|
|
||
|
if (! $course = get_record("course", "id", $cm->course)) {
|
||
|
error("Course is misconfigured");
|
||
|
}
|
||
|
|
||
|
if (! $label = get_record("label", "id", $cm->instance)) {
|
||
|
error("Course module is incorrect");
|
||
|
}
|
||
|
|
||
|
} else {
|
||
|
if (! $label = get_record("label", "id", $l)) {
|
||
|
error("Course module is incorrect");
|
||
|
}
|
||
|
if (! $course = get_record("course", "id", $label->course)) {
|
||
|
error("Course is misconfigured");
|
||
|
}
|
||
|
if (! $cm = get_coursemodule_from_instance("label", $label->id, $course->id)) {
|
||
|
error("Course Module ID was incorrect");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
require_login($course->id);
|
||
|
|
||
|
redirect("$CFG->wwwroot/course/view.php?id=$course->id");
|
||
|
|
||
|
?>
|
||
|
|