You are here

date.views.inc in Date 6.2

Same filename and directory in other branches
  1. 6 date/date.views.inc

File

date/date.views.inc
View source
<?php

/**
 * Implementation of hook_views_handlers().
 */
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',
      ),
    ),
  );
}

Functions

Namesort descending Description
date_views_handlers Implementation of hook_views_handlers().