You are here

function getlocations_gps_permission in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_gps/getlocations_gps.module \getlocations_gps_permission()

Implements hook_permission().

File

modules/getlocations_gps/getlocations_gps.module, line 29
getlocations_gps.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_gps_permission() {
  $perms = array();
  $perms['access getlocations gps'] = array(
    'title' => t('Access Getlocations GPS'),
    'description' => t('View and use the Getlocations_gps module.'),
  );
  return $perms;
}