You are here

function getdirections_fields_theme in Get Directions 7.3

Implements hook_theme().

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

File

modules/getdirections_fields/getdirections_fields.module, line 691
Provides Field module integration for Getdirections

Code

function getdirections_fields_theme() {
  return array(
    'getdirections_fields_show' => array(
      'variables' => array(
        'form' => NULL,
        'settings' => array(),
        'mapid' => '',
      ),
    ),
    'getdirections_fields_link' => array(
      'variables' => array(
        'link_text' => '',
        'entity_type' => '',
        'entity_id' => 0,
        'dir' => 'to',
      ),
    ),
  );
}