You are here

function password_toggle_help in Password toggle 8

Same name and namespace in other branches
  1. 6 password_toggle.module \password_toggle_help()
  2. 7 password_toggle.module \password_toggle_help()

Implements hook_help().

File

./password_toggle.module, line 16
Simple module that adds a checkbox to toggle password masking on login forms.

Code

function password_toggle_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.password_toggle':
      return t("The Password toggle module adds a checkbox to password fields which toggles the masking of the password; that is, clicking the checkbox changes the '•' characters to the typed characters and back again. This allows users to verify they have typed the correct password, but also retain privacy if required.");
  }
}