You are here

function notifications_subscriptions_options_form_submit in Notifications 6.4

Same name and namespace in other branches
  1. 7 notifications_account/notifications_account.module \notifications_subscriptions_options_form_submit()

Wrapper submit callback se we can do an include before actual submission

1 call to notifications_subscriptions_options_form_submit()
notifications_ui_notifications_event in notifications_ui/notifications_ui.module
Implementation of hook_notifications_event().
2 string references to 'notifications_subscriptions_options_form_submit'
notifications_object_options_form in includes/object.inc
Form for object (node, user, term...) subscriptions
notifications_object_options_subform in includes/object.inc
Subform with subscription options so it can be reused for a fieldset on a bigger form

File

./notifications.module, line 497
Notifications module

Code

function notifications_subscriptions_options_form_submit($form, &$form_state) {
  notifications_include('object.inc');
  return notifications_object_options_form_submit($form, $form_state);
}