You are here

function login_security_help in Login Security 7

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

Implements hook_help().

File

./login_security.module, line 512
Login Security

Code

function login_security_help($path, $arg = NULL) {
  switch ($path) {
    case 'admin/settings/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.', array(
        '!README' => 'http://drupalcode.org/project/login_security.git/blob/refs/heads/6.x-1.x:/README.txt',
      )) . '</p>';
  }
}