You are here

function getdirections_permission in Get Directions 7.3

Same name and namespace in other branches
  1. 7.2 getdirections.module \getdirections_permission()

Implements hook_permission().

File

./getdirections.module, line 44
Fetches google map directions.

Code

function getdirections_permission() {
  return array(
    'access gmap getdirections' => array(
      'title' => t('Access Getdirections'),
      'description' => t('View and use the Getdirections module.'),
    ),
    'access user getdirections' => array(
      'title' => t('Access user Getdirections'),
      'description' => t('View users with the Getdirections module.'),
    ),
  );
}