You are here

function date_views_handlers in Date 6.2

Implementation of hook_views_handlers().

File

date/date.views.inc, line 6

Code

function date_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'date'),
    ),
    // A date-specific handler for grouping multiple values.
    'handlers' => array(
      'date_handler_field_multiple' => array(
        'parent' => 'content_handler_field_multiple',
      ),
    ),
  );
}