You are here

function notifications_subscriptions_options_form_submit in Notifications 7

Same name and namespace in other branches
  1. 6.4 notifications.module \notifications_subscriptions_options_form_submit()

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

1 string reference to 'notifications_subscriptions_options_form_submit'
Notifications_Subscription_List::options_subform in ./notifications.list.inc
Subform with subscription options so it can be reused for a fieldset on a bigger form

File

notifications_account/notifications_account.module, line 214
Notifications module - User subscriptions tabs

Code

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