You are here

function getlocations_mapquest_theme in Get Locations 7

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

Implements hook_theme().

This lets us tell Drupal about our theme functions and their arguments.

File

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

Code

function getlocations_mapquest_theme() {
  return array(
    'getlocations_mapquest_link' => array(
      'variables' => array(
        'link_text' => '',
        'entity_type' => '',
        'entity_id' => 0,
      ),
    ),
    'getlocations_mapquest_map' => array(
      'variables' => array(
        'width' => '',
        'height' => '',
        'map_settings' => '',
        'mapid' => '',
        'links' => '',
      ),
    ),
    'getlocations_mapquest_plugin_style_options_form' => array(
      'render element' => 'form',
    ),
    'getlocations_mapquest_settings_form' => array(
      'render element' => 'form',
    ),
    'getlocations_mapquest_display_options_form' => array(
      'render element' => 'form',
    ),
  );
}