You are here

function ip_login_perm in IP Login 6.2

Implementation of hook_perm().

File

./ip_login.module, line 165
Allow user login by IP addresses, ranges or wildcards.

Code

function ip_login_perm() {

  // @todo add perms checks to correct places in module
  return array(
    'administer ip login',
    'can log in as another user',
  );
}