You are here

function location_perm in Location 6.3

Same name and namespace in other branches
  1. 5.3 location.module \location_perm()
  2. 5 location.module \location_perm()

Implementation of hook_perm().

File

./location.module, line 100
Location module main routines. An implementation of a universal API for location manipulation. Provides functions for postal_code proximity searching, deep-linking into online mapping services. Currently, some options are configured through an…

Code

function location_perm() {
  return array(
    'submit latitude/longitude',
    'view location directory',
    'view node location table',
    'view user location table',
  );
}