You are here

function colorbox_fullcalendar_options_info in FullCalendar 8.3

Same name and namespace in other branches
  1. 8 fullcalendar_options/includes/colorbox.fullcalendar.inc \colorbox_fullcalendar_options_info()
  2. 7.2 fullcalendar_options/includes/colorbox.fullcalendar.inc \colorbox_fullcalendar_options_info()

Implements hook_fullcalendar_options_info().

File

fullcalendar_options/includes/colorbox.fullcalendar.inc, line 13
Provides extra FullCalendar configuration options for Colorbox.

Code

function colorbox_fullcalendar_options_info() {
  return [
    'colorbox' => [
      'name' => t('Colorbox'),
      'js' => TRUE,
      'parent' => 'fullcalendar_options',
    ],
  ];
}