You are here

function calendar_views_api in Calendar 6.2

Same name and namespace in other branches
  1. 7.3 calendar.module \calendar_views_api()
  2. 7 calendar.module \calendar_views_api()
  3. 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' => 2,
    'path' => drupal_get_path('module', 'calendar') . '/includes',
  );
}