You are here

function gmap_location_perm in GMap Module 6.2

Same name and namespace in other branches
  1. 5 gmap_location.module \gmap_location_perm()
  2. 6 gmap_location.module \gmap_location_perm()

Implementation of hook_perm().

File

./gmap_location.module, line 29
GMap Location module is a module to add some gmap funcationality based on location.modules information.

Code

function gmap_location_perm() {
  return array(
    'view node map',
    'view user map',
    'view user location details',
  );
}