You are here

function gmap_location_perm in GMap Module 5

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

Implementation of hook_perm().

File

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

Code

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