function fullcalendar_views_data in FullCalendar 6.2
Same name and namespace in other branches
- 8 fullcalendar.views.inc \fullcalendar_views_data()
- 8.3 fullcalendar.views.inc \fullcalendar_views_data()
- 7.2 includes/views/fullcalendar.views.inc \fullcalendar_views_data()
Implementation of hook_views_data().
File
- includes/
views/ fullcalendar.views.inc, line 82 - Contains views module hooks
Code
function fullcalendar_views_data() {
return array(
'fullcalendar' => array(
'table' => array(
'group' => t('FullCalendar'),
'join' => array(
'#global' => array(),
),
),
'area' => array(
'title' => t('Empty calendar'),
'help' => t('Provide empty calendar.'),
'area' => array(
'handler' => 'fullcalendar_handler_area_empty',
),
),
'gcal' => array(
'title' => t('Google Calendar'),
'help' => t('Display events from a Google Calendar.'),
'field' => array(
'handler' => 'fullcalendar_handler_field_gcal',
),
),
),
);
}