You are here

function location_token_list in Location 7.5

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

Implements hook_token_list().

File

./location.module, line 1612
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_list($type = 'all') {
  require_once DRUPAL_ROOT . '/' . drupal_get_path('module', 'location') . '/location.token.inc';
  return _location_token_list($type);
}