You are here

function fullcalendar_views_plugins_alter in FullCalendar 7.2

Same name and namespace in other branches
  1. 8 fullcalendar.views_execution.inc \fullcalendar_views_plugins_alter()
  2. 8.3 fullcalendar.views_execution.inc \fullcalendar_views_plugins_alter()

Implements hook_views_plugins_alter().

File

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

Code

function fullcalendar_views_plugins_alter(&$plugins) {
  $plugins['display']['fullcalendar'] = array(
    'title' => t('FullCalendar - Deprecated, use page display instead!'),
    'help' => t('Stop using this display, use page instead'),
    'no ui' => TRUE,
  ) + $plugins['display']['page'];
}