You are here

function getlocations_search_box in Get Locations 7

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

colorbox

2 string references to 'getlocations_search_box'
getlocations_search_menu in modules/getlocations_search/getlocations_search.module
Implements hook_menu().
getlocations_search_theme in modules/getlocations_search/getlocations_search.module
Implements hook_theme().

File

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

Code

function getlocations_search_box() {
  $content = getlocations_search();
  $output = theme('getlocations_search_box', array(
    'content' => $content,
  ));
  print $output;
  exit;
}