You are here

function fullcalendar_colors_fullcalendar_classes in FullCalendar 7.2

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

Implements hook_fullcalendar_classes().

File

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

Code

function fullcalendar_colors_fullcalendar_classes($entity) {

  // @todo Remove in 7.x-2.1.
  if (!function_exists('colors_include_api')) {
    return array();
  }
  colors_include_api();
  return module_invoke_all('colors_classes', $entity);
}