function hook_fullcalendar_api in FullCalendar 7.2
Defines the location of your FullCalendar API includes.
Return value
array An associative array containing the following key-value pairs:
- api: The version of the FullCalendar API your module implements.
- path: The location of your MODULENAME.fullcalendar.inc files.
2 functions implement hook_fullcalendar_api()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- fullcalendar_fullcalendar_api in ./
fullcalendar.module - Implements hook_fullcalendar_api().
- fullcalendar_options_fullcalendar_api in fullcalendar_options/
fullcalendar_options.module - Implements hook_fullcalendar_api().
File
- ./
fullcalendar.api.php, line 116 - Hooks provided by the FullCalendar module.
Code
function hook_fullcalendar_api() {
return array(
'api' => fullcalendar_api_version(),
'path' => drupal_get_path('module', 'MODULENAME') . '/includes',
);
}