You are here

function location_bundle_load in Location 7.4

File

./location.module, line 1927
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_bundle_load($arg) {
  return db_query('SELECT * FROM {location_bundles} WHERE bundle = :bundle', array(
    ':bundle' => $arg,
  ))
    ->fetch();
}