You are here

function location_token_values in Location 7.5

Same name and namespace in other branches
  1. 5.3 location.module \location_token_values()
  2. 6.3 location.module \location_token_values()
  3. 7.3 location.module \location_token_values()
  4. 7.4 location.module \location_token_values()

Implements hook_token_values().

File

./location.module, line 1604
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_token_values($type, $object = NULL) {
  require_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'location') . '/location.token.inc';
  return _location_token_values($type, $object);
}