You are here

function smart_ip_permission in Smart IP 7

Same name and namespace in other branches
  1. 7.2 smart_ip.module \smart_ip_permission()

Implements hook_permission().

File

./smart_ip.module, line 77
Determines country, geo location (longitude/latitude), region, city and postal code of the user, based on IP address

Code

function smart_ip_permission() {
  return array(
    'administer smart_ip' => array(
      'title' => t('Administer Smart IP'),
    ),
  );
}