You are here

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

Same name and namespace in other branches
  1. 8.4 restrict_by_ip.module \restrict_by_ip_help()
  2. 5 restrict_by_ip.module \restrict_by_ip_help()
  3. 6.3 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()

Implementation of hook_help().

File

./restrict_by_ip.module, line 12
Allows the admin to select which IP Addresses a user can login from for this site. Some of the code below is taken from the cck_ipaddress_module

Code

function restrict_by_ip_help($section) {
  switch ($section) {
    case 'admin/help#restrict_by_ip':
      $output = '<p>' . t('The site administrator can limit a user to only be able to login from a
        certain IP Address, or a short range.') . '</p>';
      return $output;
  }
}