You are here

function location_search_theme in Location 7.5

Same name and namespace in other branches
  1. 6.3 contrib/location_search/location_search.module \location_search_theme()
  2. 7.3 contrib/location_search/location_search.module \location_search_theme()
  3. 7.4 contrib/location_search/location_search.module \location_search_theme()

Implements hook_theme().

File

contrib/location_search/location_search.module, line 29
Location search interface.

Code

function location_search_theme() {
  return array(
    'search_result_location' => array(
      'variables' => array(
        'result' => NULL,
        'module' => NULL,
      ),
      'template' => 'search_result_location',
    ),
  );
}