fullcalendar.views.inc in FullCalendar 7
Same filename and directory in other branches
Contains views module hooks
File
fullcalendar.views.incView source
<?php
/**
* @file
* Contains views module hooks
*/
/**
* Implements hook_views_plugins().
*/
function fullcalendar_views_plugins() {
$path = drupal_get_path('module', 'fullcalendar');
$views_path = drupal_get_path('module', 'views');
return array(
'module' => 'fullcalendar',
'display' => array(
'parent' => array(
'no ui' => TRUE,
'handler' => 'views_plugin_display',
'path' => "{$views_path}/plugins",
'parent' => '',
),
'page' => array(
'handler' => 'views_plugin_display_page',
'path' => "{$views_path}/plugins",
'parent' => 'parent',
),
'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' => 'views_plugin_style_fullcalendar',
'theme' => 'views_view_fullcalendar',
'theme path' => $path,
'uses row plugin' => TRUE,
'uses options' => TRUE,
'uses grouping' => TRUE,
'type' => 'normal',
'parent' => 'default',
),
),
'row' => array(
'fullcalendar_node' => array(
'title' => t('Node - FullCalendar'),
'help' => t('For use with FullCalendar style'),
'handler' => 'views_plugin_node_fullcalendar',
'theme' => 'views_view_node_fullcalendar',
'theme path' => $path,
'uses fields' => FALSE,
'uses options' => TRUE,
'type' => 'normal',
),
),
);
}
Functions
Name | Description |
---|---|
fullcalendar_views_plugins | Implements hook_views_plugins(). |