MDL-78962 core/loadingicon: remove jQuery requirement in the API
[moodle.git] / auth / none / auth.php
blob832c88436703d3a56c499ab95557324d640520a2
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Anobody can login with any password.
20 * @package auth_none
21 * @author Martin Dougiamas
22 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
25 defined('MOODLE_INTERNAL') || die();
27 require_once($CFG->libdir.'/authlib.php');
29 /**
30 * Plugin for no authentication.
32 class auth_plugin_none extends auth_plugin_base {
34 /**
35 * Constructor.
37 public function __construct() {
38 $this->authtype = 'none';
39 $this->config = get_config('auth_none');
42 /**
43 * Old syntax of class constructor. Deprecated in PHP7.
45 * @deprecated since Moodle 3.1
47 public function auth_plugin_none() {
48 debugging('Use of class name as constructor is deprecated', DEBUG_DEVELOPER);
49 self::__construct();
52 /**
53 * Returns true if the username and password work or don't exist and false
54 * if the user exists and the password is wrong.
56 * @param string $username The username
57 * @param string $password The password
58 * @return bool Authentication success or failure.
60 function user_login ($username, $password) {
61 global $CFG, $DB;
62 if ($user = $DB->get_record('user', array('username'=>$username, 'mnethostid'=>$CFG->mnet_localhost_id))) {
63 return validate_internal_user_password($user, $password);
65 return true;
68 /**
69 * Updates the user's password.
71 * called when the user password is updated.
73 * @param object $user User table object
74 * @param string $newpassword Plaintext password
75 * @return boolean result
78 function user_update_password($user, $newpassword) {
79 $user = get_complete_user_data('id', $user->id);
80 // This will also update the stored hash to the latest algorithm
81 // if the existing hash is using an out-of-date algorithm (or the
82 // legacy md5 algorithm).
83 return update_internal_user_password($user, $newpassword);
86 function prevent_local_passwords() {
87 return false;
90 /**
91 * Returns true if this authentication plugin is 'internal'.
93 * @return bool
95 function is_internal() {
96 return true;
99 /**
100 * Returns true if this authentication plugin can change the user's
101 * password.
103 * @return bool
105 function can_change_password() {
106 return true;
110 * Returns the URL for changing the user's pw, or empty if the default can
111 * be used.
113 * @return moodle_url
115 function change_password_url() {
116 return null;
120 * Returns true if plugin allows resetting of internal password.
122 * @return bool
124 function can_reset_password() {
125 return true;
129 * Returns true if plugin can be manually set.
131 * @return bool
133 function can_be_manually_set() {
134 return true;