This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/sites/all/modules/date/date/date.views.inc
2017-07-26 14:11:39 +02:00

18 lines
398 B
PHP

<?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',
),
),
);
}