function getlocations_search_theme in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_search/getlocations_search.module \getlocations_search_theme()
Implements hook_theme().
This lets us tell Drupal about our theme functions and their arguments.
File
- modules/
getlocations_search/ getlocations_search.module, line 673 - getlocations_search.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_search_theme() {
return array(
'getlocations_search' => array(
'variables' => array(
'which' => NULL,
),
),
'getlocations_search_form' => array(
'render element' => 'form',
),
'getlocations_search_settings_form' => array(
'render element' => 'form',
),
'getlocations_search_block_settings_form' => array(
'render element' => 'form',
),
'getlocations_search_box' => array(
'variables' => array(
'content' => NULL,
),
'template' => 'getlocations_search_box',
),
);
}