You are here

function fullcalendar_views_handlers in FullCalendar 6.2

Implementation of hook_views_handlers().

File

includes/views/fullcalendar.views.inc, line 63
Contains views module hooks

Code

function fullcalendar_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'fullcalendar') . '/includes/views/handlers',
    ),
    'handlers' => array(
      'fullcalendar_handler_area_empty' => array(
        'parent' => 'views_handler_area',
      ),
      'fullcalendar_handler_field_gcal' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}