You are here

function ip_ban_permission in IP Ban 7

Implements hook_permission().

File

./ip_ban.module, line 27

Code

function ip_ban_permission() {
  return array(
    'ignore ip_ban' => array(
      'title' => t('Bypass ban'),
      'description' => t('Allow a user from a banned IP address or country to bypass read only or complete ban.'),
    ),
  );
}