t('Username'), 'description' => t('Password must differ from the username. Put any positive number to enforce this policy.')); } /** * Error message of the constraint. */ function password_policy_constraint_username_error($constraint) { return t('Password must differ from the username.'); } /** * Password validation. */ function password_policy_constraint_username_validate($password, $constraint, $uid) { $account = user_load($uid); return drupal_strtolower($account->name) != drupal_strtolower($password); } /** * Javascript portion. */ function password_policy_constraint_username_js($constraint, $uid) { $account = user_load($uid); $s = ''; $s .= " var username='". $account->name ."';\n"; $s .= " if (username.toLowerCase() == value.toLowerCase()) {\n"; $s .= " strength=\"low\";\n"; $s .= " msg.push(translate.constraint_username);\n"; $s .= " }\n"; return $s; }