function fullcalendar_create_module_implements_alter in FullCalendar Create 7
Implements hook_module_implements_alter().
Ensures that the dates are populated before other processing.
File
- ./
fullcalendar_create.module, line 66 - Provides click-to-create functionality for FullCalendar.
Code
function fullcalendar_create_module_implements_alter(&$implementations, $hook) {
if ($hook == 'date_combo_process_alter') {
$implementations = array(
'fullcalendar_create' => $implementations['fullcalendar_create'],
) + $implementations;
}
}