moodle/course/unenrol.php
2003-02-27 02:46:37 +00:00

60 lines
1.8 KiB
PHP

<?PHP // $Id$
// Removes a student from a class
// This will not delete any of their data from the course,
// but will remove them from the student list and prevent
// any course email being sent to them.
require_once("../config.php");
require_once("lib.php");
require_variable($id); //course
optional_variable($user, $USER->id); //user
if (! $course = get_record("course", "id", $id) ) {
error("That's an invalid course id");
}
if (! $user = get_record("user", "id", $user) ) {
error("That's an invalid user id");
}
require_login($course->id);
if ($user->id != $USER->id and !isteacher($course->id)) {
error("You must be a teacher to do this");
}
if (isset($confirm)) {
if (! unenrol_student($user->id, $course->id)) {
error("An error occurred while trying to unenrol you.");
}
add_to_log($course->id, "course", "unenrol", "view.php?id=$course->id", "$user->id");
if ($user->id == $USER->id) {
unset($USER->student["$id"]);
redirect("$CFG->wwwroot");
}
redirect("$CFG->wwwroot/user/index.php?id=$course->id");
}
$strunenrol = get_string("unenrol");
print_header("$course->shortname: $strunenrol", "$course->fullname",
"<A HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</A> -> $strunenrol");
if ($user->id == $USER->id) {
$strunenrolsure = get_string("unenrolsure", "", get_string("yourself"));
} else {
$strunenrolsure = get_string("unenrolsure", "", "$user->firstname $user->lastname");
}
notice_yesno ($strunenrolsure, "unenrol.php?id=$id&user=$user->id&confirm=yes", "$HTTP_REFERER");
print_footer();
?>