You are here

function restrict_by_ip_help in Restrict Login or Role Access by IP Address 8.4

Same name and namespace in other branches
  1. 5 restrict_by_ip.module \restrict_by_ip_help()
  2. 6.3 restrict_by_ip.module \restrict_by_ip_help()
  3. 6 restrict_by_ip.module \restrict_by_ip_help()
  4. 6.2 restrict_by_ip.module \restrict_by_ip_help()
  5. 7.3 restrict_by_ip.module \restrict_by_ip_help()

Implements hook_help().

@TODO

File

./restrict_by_ip.module, line 13
Restrict logins or roles to whitelisted IP addresses.

Code

function restrict_by_ip_help($section) {
  $output = '';
  switch ($section) {
    case 'admin/help#restrict_by_ip':
      $output = '<p>The site administrator can limit a user to only be able to login from certain IP Addresses or ranges of IP Addresses using CIDR notation. Individual roles may also be limited to a those from specified IP addresses and rangers.</p>';
      break;
  }
  return $output;
}