You are here

function getlocations_search in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_search/getlocations_search.module \getlocations_search()

Menu item

2 calls to getlocations_search()
getlocations_search_block_view in modules/getlocations_search/getlocations_search.module
Implements hook_block_view().
getlocations_search_box in modules/getlocations_search/getlocations_search.module
colorbox
9 string references to 'getlocations_search'
getlocations_places_check in ./getlocations.module
Function to check wether the google places library should be enabled.
getlocations_search_block_configure in modules/getlocations_search/getlocations_search.module
Implements hook_block_configure().
getlocations_search_getmap in modules/getlocations_search/getlocations_search.module
Set up the map and use getlocations to spit it out
getlocations_search_menu in modules/getlocations_search/getlocations_search.module
Implements hook_menu().
getlocations_setup_js in ./getlocations.module
Function to setup the map scripts

... See full list

File

modules/getlocations_search/getlocations_search.module, line 90
getlocations_search.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_search($which = 'page') {
  $contents = '';
  $contents .= theme('getlocations_search', array(
    'which' => $which,
  ));
  return $contents;
}