You are here

function date_api_views_api in Date 6.2

Implementation of hook_views_api().

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

File

./date_api.module, line 2287
This module will make the date API available to other modules. Designed to provide a light but flexible assortment of functions and constants, with more functionality in additional files that are not loaded unless other modules specifically include them.

Code

function date_api_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'date_api') . '/includes',
  );
}