You are here

function fullcalendar_colors_fullcalendar_classes in FullCalendar 8.3

Same name and namespace in other branches
  1. 8 fullcalendar_colors/fullcalendar_colors.module \fullcalendar_colors_fullcalendar_classes()
  2. 7.2 fullcalendar_colors/fullcalendar_colors.module \fullcalendar_colors_fullcalendar_classes()

Implements hook_fullcalendar_classes().

File

fullcalendar_colors/fullcalendar_colors.module, line 54
Provide integration with Colors module for FullCalendar.

Code

function fullcalendar_colors_fullcalendar_classes($entity) {
  return \Drupal::service('module_handler')
    ->invokeAll('colors_classes', [
    $entity,
  ]);
}