Lines Matching defs:password
522 $fieldtype = 'password';
812 // no new password supplied, check if we need to generate one (or it stays unchanged)
849 * Send password change notification email
852 * @param string $password plain text
856 protected function notifyUser($user, $password, $status_alert = true)
859 if ($sent = auth_sendPassword($user, $password)) {
871 * Verify password meets minimum requirements
872 * :TODO: extend to support password strength
874 * @param string $password candidate string for new password
875 * @param string $confirm repeated password for confirmation
878 protected function verifyPassword($password, $confirm)
882 if (empty($password) && empty($confirm)) {
886 if ($password !== $confirm) {
891 // :TODO: test password for required strength
893 // if we make it this far the password is good
901 * @return array (user, password, full name, email, array(groups))
915 $user[5] = $INPUT->str('userpass2'); // repeated password for confirmation
1095 array_splice($raw, 1, 0, auth_pwgen()); // splice in a generated password
1105 array_splice($raw, 1, 1); // remove the spliced in password
1158 // no need to check password, handled elsewhere