Anobody can login with any password.
Author: | Martin Dougiamas |
License: | http://www.gnu.org/copyleft/gpl.html GNU Public License |
File Size: | 139 lines (4 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
auth_plugin_none:: (2 methods):
__construct()
auth_plugin_none()
name:: (8 methods):
user_login()
user_update_password()
prevent_local_passwords()
is_internal()
can_change_password()
change_password_url()
can_reset_password()
can_be_manually_set()
Class: auth_plugin_none - X-Ref
Plugin for no authentication.__construct() X-Ref |
Constructor. |
auth_plugin_none() X-Ref |
Old syntax of class constructor. Deprecated in PHP7. |
user_login($username, $password) X-Ref |
Returns true if the username and password work or don't exist and false if the user exists and the password is wrong. param: string $username The username param: string $password The password return: bool Authentication success or failure. |
user_update_password($user, $newpassword) X-Ref |
Updates the user's password. called when the user password is updated. param: object $user User table object param: string $newpassword Plaintext password return: boolean result |
prevent_local_passwords() X-Ref |
No description |
is_internal() X-Ref |
Returns true if this authentication plugin is 'internal'. return: bool |
can_change_password() X-Ref |
Returns true if this authentication plugin can change the user's password. return: bool |
change_password_url() X-Ref |
Returns the URL for changing the user's pw, or empty if the default can be used. return: moodle_url |
can_reset_password() X-Ref |
Returns true if plugin allows resetting of internal password. return: bool |
can_be_manually_set() X-Ref |
Returns true if plugin can be manually set. return: bool |