function fullcalendar_views_data in FullCalendar 7.2
Same name and namespace in other branches
- 8 fullcalendar.views.inc \fullcalendar_views_data()
- 8.3 fullcalendar.views.inc \fullcalendar_views_data()
- 6.2 includes/views/fullcalendar.views.inc \fullcalendar_views_data()
Implements hook_views_data().
File
- includes/
views/ fullcalendar.views.inc, line 49 - Contains Views module hooks.
Code
function fullcalendar_views_data() {
$data = array();
$data['fullcalendar'] = array(
'table' => array(
'group' => t('FullCalendar'),
'join' => array(
'#global' => array(),
),
),
'gcal' => array(
'title' => t('Google Calendar'),
'help' => t('Display events from a Google Calendar.'),
'field' => array(
'handler' => 'fullcalendar_handler_field_gcal',
),
),
);
return $data;
}