You are here

function hook_location_taxonomize_source in Location Taxonomize 7.2

Allows to register a module as a source module for Location Taxonomize.

Return value

Array of source modules, like [module machine name] => [name to appear in UI].

2 functions implement hook_location_taxonomize_source()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

location_taxonomize_af_location_taxonomize_source in location_taxonomize_af/location_taxonomize_af.module
Register this module as a source module for Location Taxonomize
location_taxonomize_location_location_taxonomize_source in location_taxonomize_location/location_taxonomize_location.module
Register this module as a source module for Location Taxonomize
1 invocation of hook_location_taxonomize_source()
location_taxonomize_get_sources in ./location_taxonomize.inc
Returns an array indicating which of the possible Source modules are installed

File

./location_taxonomize.api.php, line 19
API documentation for the Location Taxonomize module.

Code

function hook_location_taxonomize_source() {

  // Add the module called 'location_taxonomize_af' as a source module.
  return array(
    'location_taxonomize_af' => 'Address Field',
  );
}