function hook_fullcalendar_droppable in FullCalendar 8.2
Same name and namespace in other branches
- 8.5 fullcalendar.api.php \hook_fullcalendar_droppable()
- 8 fullcalendar.api.php \hook_fullcalendar_droppable()
- 8.3 fullcalendar.api.php \hook_fullcalendar_droppable()
- 8.4 fullcalendar.api.php \hook_fullcalendar_droppable()
- 7.2 fullcalendar.api.php \hook_fullcalendar_droppable()
Declare that you provide a droppable callback.
Implementing this hook will cause a checkbox to appear on the view settings, when checked FullCalendar will search for JS callbacks in the form Drupal.fullcalendar.droppableCallbacks.MODULENAME.callback.
See also
http://arshaw.com/fullcalendar/docs/dropping/droppable
File
- ./
fullcalendar.api.php, line 51 - Hooks provided by the FullCalendar module.
Code
function hook_fullcalendar_droppable() {
// This hook will never be executed.
return TRUE;
}