You are here

function login_security_help in Login Security 8

Same name and namespace in other branches
  1. 6 login_security.module \login_security_help()
  2. 7 login_security.module \login_security_help()
  3. 2.x login_security.module \login_security_help()

Implements hook_help().

File

./login_security.module, line 474
Login Security module hooks.

Code

function login_security_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.login_security':
      return '<p>' . t('Make sure you have reviewed the <a href="!README">README file</a> for further information about how all these settings will affect your Drupal login form submissions.', [
        '!README' => 'http://drupalcode.org/project/login_security.git/blob/refs/heads/6.x-1.x:/README.txt',
      ]) . '</p>';
  }
}