You are here

function image_hotspots_theme in Image Hotspots 7.2

Same name and namespace in other branches
  1. 8 image_hotspots.module \image_hotspots_theme()

Implements hook_theme().

File

./image_hotspots.module, line 31
Main function of module.

Code

function image_hotspots_theme() {
  return array(
    'image_hotspots_data' => array(
      'template' => 'image-hotspots-data',
      'path' => drupal_get_path('module', 'image_hotspots') . '/templates',
      'variables' => array(),
    ),
    'image_hotspot_element' => array(
      'template' => 'image-hotspots-element',
      'path' => drupal_get_path('module', 'image_hotspots') . '/templates',
      'variables' => array(),
    ),
  );
}