function calendar_views_api in Calendar 7
Same name and namespace in other branches
- 6.2 calendar.module \calendar_views_api()
- 7.3 calendar.module \calendar_views_api()
- 7.2 calendar.module \calendar_views_api()
Implementation of hook_views_api().
This one is used as the base to reduce errors when updating.
File
- ./
calendar.module, line 10 - Adds calendar filtering and displays to Views.
Code
function calendar_views_api() {
return array(
'api' => 3.0,
'path' => drupal_get_path('module', 'calendar') . '/includes',
);
}