You are here

function fullcalendar_views_plugins in FullCalendar 7.2

Same name and namespace in other branches
  1. 6.2 includes/views/fullcalendar.views.inc \fullcalendar_views_plugins()
  2. 6 fullcalendar.views.inc \fullcalendar_views_plugins()
  3. 7 fullcalendar.views.inc \fullcalendar_views_plugins()

Implements hook_views_plugins().

File

includes/views/fullcalendar.views.inc, line 11
Contains Views module hooks.

Code

function fullcalendar_views_plugins() {
  $path = drupal_get_path('module', 'fullcalendar');
  return array(
    'module' => 'fullcalendar',
    'style' => array(
      'fullcalendar' => array(
        'title' => t('FullCalendar'),
        'help' => t('Displays items on a calendar.'),
        'handler' => 'fullcalendar_plugin_style_fullcalendar',
        'path' => $path . '/includes/views/plugins',
        'theme' => 'fullcalendar',
        'theme file' => 'theme.inc',
        'theme path' => $path . '/theme',
        'uses row plugin' => FALSE,
        'uses fields' => TRUE,
        'uses options' => TRUE,
        'uses grouping' => TRUE,
        'even empty' => TRUE,
        'type' => 'normal',
      ),
    ),
  );
}