You are here

function colorbox_fullcalendar_options_info in FullCalendar 7.2

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

Implements hook_fullcalendar_options_info().

File

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

Code

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