function calendar_ical_views_api in Calendar 7
Same name and namespace in other branches
- 6.2 calendar_ical/calendar_ical.module \calendar_ical_views_api()
- 7.2 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'),
);
}