You are here

function fullcalendar_fullcalendar_options_info in FullCalendar 7.2

Implements hook_fullcalendar_options_info().

File

includes/fullcalendar.fullcalendar.inc, line 11
Provides default FullCalendar configuration options.

Code

function fullcalendar_fullcalendar_options_info() {
  return array(
    'fullcalendar' => array(
      'name' => t('FullCalendar'),
      'no_fieldset' => TRUE,
      'weight' => '-20',
      'js' => TRUE,
    ),
  );
}