You are here

function date_ical_theme in Date iCal 7.2

Same name and namespace in other branches
  1. 7.3 date_ical.module \date_ical_theme()
  2. 7 date_ical.module \date_ical_theme()

Implements hook_theme().

File

./date_ical.module, line 34
Adds ical functionality to Views, and an iCal parser to Feeds.

Code

function date_ical_theme($existing, $type, $theme, $path) {
  return array(
    'date_ical_icon' => array(
      'variables' => array(
        'url' => NULL,
        'tooltip' => NULL,
      ),
    ),
  );
}