You are here

function password_policy_constraint_lowercase_js in Password Policy 7

Same name and namespace in other branches
  1. 6 constraints/constraint_lowercase.inc \password_policy_constraint_lowercase_js()

Javascript portion.

File

constraints/constraint_lowercase.inc, line 38
Password policy constraint callbacks.

Code

function password_policy_constraint_lowercase_js($constraint, $account) {
  return <<<JS

    var count = (value.match(/[a-z]/g) || []).length;
    if (count < {<span class="php-variable">$constraint</span>}) {
      strength = 'low';
      msg.push(translate.constraint_lowercase);
    }
JS;
}