You are here

function calendar_ical_views_api in Calendar 7.2

Same name and namespace in other branches
  1. 6.2 calendar_ical/calendar_ical.module \calendar_ical_views_api()
  2. 7 calendar_ical/calendar_ical.module \calendar_ical_views_api()

Implementation of hook_views_api().

This one is used as the base to reduce errors when updating.

File

calendar_ical/calendar_ical.module, line 8
Adds ical functionality to Calendar.

Code

function calendar_ical_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'calendar_ical'),
  );
}