fullcalendar.views.inc in FullCalendar 6.2
Same filename and directory in other branches
Contains views module hooks
File
includes/views/fullcalendar.views.incView source
<?php
/**
* @file
* Contains views module hooks
*/
/**
* Implementation of hook_views_plugins().
*/
function fullcalendar_views_plugins() {
$module_path = drupal_get_path('module', 'fullcalendar');
$theme_path = $module_path . '/theme';
$path = $module_path . '/includes/views/plugins';
return array(
'display' => array(
'fullcalendar' => array(
'title' => t('FullCalendar'),
'handler' => 'fullcalendar_plugin_display_page',
'help' => t('For use with FullCalendar style'),
'path' => $path,
'parent' => 'page',
'theme' => 'views_view',
'uses hook menu' => TRUE,
),
),
'style' => array(
'fullcalendar' => array(
'title' => t('FullCalendar'),
'help' => t('Displays items on a calendar.'),
'handler' => 'fullcalendar_plugin_style_fullcalendar',
'path' => $path,
'theme' => 'fullcalendar',
'theme file' => 'theme.inc',
'theme path' => $theme_path,
'uses row plugin' => TRUE,
'uses options' => TRUE,
'uses grouping' => TRUE,
'type' => 'normal',
'parent' => 'default',
),
),
'row' => array(
'fullcalendar_node' => array(
'title' => t('Fields (FullCalendar)'),
'help' => t('For use with FullCalendar style'),
'handler' => 'fullcalendar_plugin_row_fields',
'path' => $path,
'theme' => 'fullcalendar_fields',
'theme file' => 'theme.inc',
'theme path' => $theme_path,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
),
),
);
}
/**
* Implementation of hook_views_handlers().
*/
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',
),
),
);
}
/**
* Implementation of hook_views_data().
*/
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',
),
),
),
);
}
Functions
Name | Description |
---|---|
fullcalendar_views_data | Implementation of hook_views_data(). |
fullcalendar_views_handlers | Implementation of hook_views_handlers(). |
fullcalendar_views_plugins | Implementation of hook_views_plugins(). |