function getlocations_gps_theme in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_gps/getlocations_gps.module \getlocations_gps_theme()
Implements hook_theme().
This lets us tell Drupal about our theme functions and their arguments.
File
- modules/
getlocations_gps/ getlocations_gps.module, line 393 - getlocations_gps.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_gps_theme() {
return array(
'getlocations_gps_settings_form' => array(
'render element' => 'form',
),
'getlocations_gps_map_display_options_form' => array(
'render element' => 'form',
),
'getlocations_gps_button' => array(
'variables' => array(
'defaults' => array(),
'mapid' => '',
),
),
);
}