function notifications_multiple_delete_confirm_submit in Notifications 7
Same name and namespace in other branches
- 6.4 notifications.manage.inc \notifications_multiple_delete_confirm_submit()
- 6 notifications.manage.inc \notifications_multiple_delete_confirm_submit()
- 6.2 notifications.manage.inc \notifications_multiple_delete_confirm_submit()
- 6.3 notifications.manage.inc \notifications_multiple_delete_confirm_submit()
Submit multiple delete from
1 string reference to 'notifications_multiple_delete_confirm_submit'
- notifications_multiple_delete_confirm in ./
notifications.pages.inc - Form for multiple delete. When account passed check that all subscriptions belong to the user account
File
- ./
notifications.pages.inc, line 431 - User pages for Notifications
Code
function notifications_multiple_delete_confirm_submit($form, &$form_state) {
if ($form_state['values']['confirm']) {
Notifications_Subscription::delete_subscription(array_keys($form_state['values']['items']));
drupal_set_message(t('The subscriptions have been deleted.'));
}
return;
}