]> git.mjollnir.org Git - moodle.git/commit
Added support for usercreation from Moodle to authentication module.
authorpaca70 <paca70>
Thu, 20 Feb 2003 21:39:51 +0000 (21:39 +0000)
committerpaca70 <paca70>
Thu, 20 Feb 2003 21:39:51 +0000 (21:39 +0000)
commit5f2c35db1868c7656845c4b6dffc1ab3bfec8e1c
treebff4e90714ab4ff28e0bc589d28604d0b70e2aa0
parent47623d4f8f773a2d68fff80fb28cb4be722bdd01
Added support for usercreation from Moodle to authentication module.
Works currently only with ldap-module (tested with e-directory), but
 other modules could be extended too by
adding following functions:

function auth_user_exists ($username) {
//returns true if given username  already exists on authetication database
}

function auth_user_create ($userobject,$plainpass) {
//create new user to authentication database
//in inactive state (if posible)
//returns true if user is created
}
function auth_user_activate ($username) {
//activate external user  after email-address is confirmed
//returns true if user is activated
}
admin/auth.php
admin/cron.php
auth/ldap/config.html
auth/ldap/lib.php
lang/en/auth.php
lang/fi/moodle.php
login/confirm.php
login/index.php
login/index_form.html
login/signup.php