function hook_fullcalendar_options_submit in FullCalendar 7.2
Allows custom submission handling for the FullCalendar Views options form.
Parameters
array $form: The FullCalendar style plugin options form structure.
array $form_state: The FullCalendar style plugin options form state.
object $view: The FullCalendar view object.
See also
views_object::options_submit()
1 function implements hook_fullcalendar_options_submit()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- fullcalendar_fullcalendar_options_submit in includes/
fullcalendar.fullcalendar.inc - Implements hook_fullcalendar_options_submit().
1 invocation of hook_fullcalendar_options_submit()
- fullcalendar_plugin_style_fullcalendar::options_submit in includes/
views/ plugins/ fullcalendar_plugin_style_fullcalendar.inc - Handle any special handling on the validate form.
File
- ./
fullcalendar.api.php, line 253 - Hooks provided by the FullCalendar module.
Code
function hook_fullcalendar_options_submit($form, &$form_state, $view) {
$options =& $form_state['values']['style_options'];
unset($options['my_unwanted_setting']);
}