password == $course->password) { if (isguest()) { add_to_log($course->id, "course", "guest", "view.php?id=$course->id", $_SERVER['REMOTE_ADDR']); } else if (!record_exists("user_students", "userid", $USER->id, "course", $course->id)) { if (! enrol_student($USER->id, $course->id)) { error("An error occurred while trying to enrol you."); } $subject = get_string("welcometocourse", "", $course->fullname); $a->coursename = $course->fullname; $a->profileurl = "$CFG->wwwroot/user/view.php?id=$USER->id&course=$course->id"; $message = get_string("welcometocoursetext", "", $a); if (! $teacher = get_teacher($course->id)) { $teacher = get_admin(); } email_to_user($USER, $teacher, $subject, $message); add_to_log($course->id, "course", "enrol", "view.php?id=$course->id", "$USER->id"); } $USER->student["$id"] = true; if ($SESSION->wantsurl) { $destination = $SESSION->wantsurl; unset($SESSION->wantsurl); } else { $destination = "$CFG->wwwroot/course/view.php?id=$id"; } redirect($destination); } else { $errormsg = get_string("enrolmentkeyhint", "", substr($course->password,0,1)); } } $strloginto = get_string("loginto", "", $course->shortname); $strcourses = get_string("courses"); if (! $site = get_site()) { error("Could not find a site!"); } if ($course->password == "") { // no password, so enrol if (isguest()) { add_to_log($course->id, "course", "guest", "view.php?id=$course->id", "$USER->id"); } else if (empty($confirm)) { print_header($strloginto, $course->fullname, "$strcourses -> $strloginto"); echo "
"; notice_yesno(get_string("enrolmentconfirmation"), "enrol.php?id=$course->id&confirm=1", $CFG->wwwroot); print_footer(); exit; } else { if (! enrol_student($USER->id, $course->id)) { error("An error occurred while trying to enrol you."); } add_to_log($course->id, "course", "enrol", "view.php?id=$course->id", "$USER->id"); $USER->student["$id"] = true; if ($SESSION->wantsurl) { $destination = $SESSION->wantsurl; unset($SESSION->wantsurl); } else { $destination = "$CFG->wwwroot/course/view.php?id=$id"; } redirect($destination); } } $teacher = get_teacher($course->id); if (!isset($password)) { $password = ""; } print_header($strloginto, $course->fullname, "$strcourses -> $strloginto", "form.password"); print_course($course); include("enrol.html"); print_footer(); ?>