You are here

function getlocations_map_theme in Get Locations 7

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

Implements hook_theme().

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

File

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

Code

function getlocations_map_theme() {
  return array(
    'getlocations_map_link' => array(
      'variables' => array(
        'link_text' => '',
        'entity_type' => '',
        'entity_id' => 0,
      ),
    ),
  );
}