You are here

function fullcalendar_include_api in FullCalendar 7.2

Includes all FullCalendar API plugins.

7 calls to fullcalendar_include_api()
fullcalendar_fullcalendar_options_process in includes/fullcalendar.fullcalendar.inc
Implements hook_fullcalendar_options_process().
fullcalendar_plugin_style_fullcalendar::options_form in includes/views/plugins/fullcalendar_plugin_style_fullcalendar.inc
Provide a form to edit options for this plugin.
fullcalendar_plugin_style_fullcalendar::options_submit in includes/views/plugins/fullcalendar_plugin_style_fullcalendar.inc
Handle any special handling on the validate form.
fullcalendar_plugin_style_fullcalendar::options_validate in includes/views/plugins/fullcalendar_plugin_style_fullcalendar.inc
Validate the options form.
fullcalendar_plugin_style_fullcalendar::option_definition in includes/views/plugins/fullcalendar_plugin_style_fullcalendar.inc
Information about options for all kinds of purposes will be held here.

... See full list

File

./fullcalendar.module, line 406
Provides a views style plugin for FullCalendar

Code

function fullcalendar_include_api() {
  ctools_include('plugins');
  return ctools_plugin_api_include('fullcalendar', 'fullcalendar', fullcalendar_api_version(), fullcalendar_api_minimum_version());
}