Signup
Maintained by
Antonio Durán Terrés
This enrolment plugin lets you enrol users in the desired courses when they sign up to Moodle.
Comments
Product ratings and reviews are coming to Moodle Marketplace. Until then, existing comments remain available to read, but new posts have been disabled.
I just uploaded a new package that fixes some warning messages.
I have tested it on Moodle 2.3 and it works fine for me. Please let me know if you find any issues with it.
Sorry for the slow reply, but I did not get notifications for these messages and did not see them until today.
Mark suggested me to set up a tracker project for this, to better handle improvements. I have asked Anthony for it, so I hope it will be ready soon.
public function enrol_page_hook() {
global $USER;
signup_user_created($USER);
}
This will trigger the 'singup' enrolment method.
If you want to enroll users to courses with 'signup' enrolment method straight after they login in theme/themename/layout/frontpage.php file on the top the page you can add:
if (file_exists("$CFG->dirroot/enrol/signup/lib.php")) {
require_once("$CFG->dirroot/enrol/signup/lib.php");
signup_user_created($USER);
}