function hook_fullcalendar_options_process in FullCalendar 7.2
Allow any modules to have access to the view after the query is run.
Parameters
array $variables: The variables array, containing the view object.
array $settings: An array of settings to be passed to JavaScript.
2 functions implement hook_fullcalendar_options_process()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- colorbox_fullcalendar_options_process in fullcalendar_options/includes/ colorbox.fullcalendar.inc 
- Implements hook_fullcalendar_options_process().
- fullcalendar_fullcalendar_options_process in includes/fullcalendar.fullcalendar.inc 
- Implements hook_fullcalendar_options_process().
1 invocation of hook_fullcalendar_options_process()
- template_preprocess_fullcalendar in theme/theme.inc 
- Builds the FullCalendar structure as a render array.
File
- ./fullcalendar.api.php, line 266 
- Hooks provided by the FullCalendar module.
Code
function hook_fullcalendar_options_process(&$variables, &$settings) {
  $view =& $variables['view'];
  $view->my_setting = TRUE;
}