function getlocations_leaflet_theme in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_leaflet/getlocations_leaflet.module \getlocations_leaflet_theme()
Implements hook_theme().
This lets us tell Drupal about our theme functions and their arguments.
File
- modules/
getlocations_leaflet/ getlocations_leaflet.module, line 5239 - getlocations_leaflet.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_leaflet_theme() {
return array(
'getlocations_leaflet_link' => array(
'variables' => array(
'link_text' => '',
'entity_type' => '',
'entity_id' => 0,
),
),
'getlocations_leaflet_map' => array(
'variables' => array(
'width' => '',
'height' => '',
'map_settings' => '',
'mapid' => '',
'links' => '',
),
),
'getlocations_leaflet_plugin_style_options_form' => array(
'render element' => 'form',
),
'getlocations_leaflet_settings_form' => array(
'render element' => 'form',
),
'getlocations_leaflet_display_options_form' => array(
'render element' => 'form',
),
);
}