You are here

function date_api_views_handlers in Date 6.2

Implementation of hook_views_handlers() to register all of the basic handlers views uses.

File

includes/date_api.views.inc, line 35
Defines date-related Views data and plugins:

Code

function date_api_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'date_api') . '/includes',
    ),
    'handlers' => array(
      'date_api_argument_handler' => array(
        'parent' => 'views_handler_argument_date',
      ),
      'date_api_filter_handler' => array(
        'parent' => 'views_handler_filter_numeric',
      ),
    ),
  );
}