You are here

function location_path in Location 7.4

Entity path callback.

1 string reference to 'location_path'
location_entity_info in ./location.module
Implement hook_entity_info().

File

./location.module, line 1923
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_path($location) {
  return 'location/' . $location->lid;
}