function restrict_by_ip_perm in Restrict Login or Role Access by IP Address 6
Same name and namespace in other branches
- 5 restrict_by_ip.module \restrict_by_ip_perm()
 - 6.3 restrict_by_ip.module \restrict_by_ip_perm()
 - 6.2 restrict_by_ip.module \restrict_by_ip_perm()
 
Implementation of hook_perm().
File
- ./
restrict_by_ip.module, line 62  - 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_perm() {
  return array(
    'administer restrict by ip',
  );
}