You are here

function fullcalendar_theme_suggestions_alter in FullCalendar 8.2

Same name and namespace in other branches
  1. 8.5 fullcalendar.module \fullcalendar_theme_suggestions_alter()
  2. 8.4 fullcalendar.module \fullcalendar_theme_suggestions_alter()

Implements hook_theme_suggestions_alter().

File

./fullcalendar.module, line 185
Provides a views style plugin for FullCalendar

Code

function fullcalendar_theme_suggestions_alter(array &$suggestions, array $variables, $hook) {
  if ($hook === 'views_view') {
    $suggestions[] = "views_view__" . $variables['view']->style_plugin
      ->getPluginId();
  }
}