You are here

function og_confirm_unsubscribe_submit in Organic groups 5.2

Same name and namespace in other branches
  1. 5.8 og.module \og_confirm_unsubscribe_submit()
  2. 5 og.module \og_confirm_unsubscribe_submit()
  3. 5.3 og.module \og_confirm_unsubscribe_submit()
  4. 5.7 og.module \og_confirm_unsubscribe_submit()
  5. 6.2 og.pages.inc \og_confirm_unsubscribe_submit()
  6. 6 og.module \og_confirm_unsubscribe_submit()

Confirm og unsubscription submit handler

File

./og.module, line 820

Code

function og_confirm_unsubscribe_submit($form_id, $form_values) {
  og_delete_subscription($form_values['gid'], $form_values['uid']);
  drupal_set_message(t('User unsubscribed from group.'));
  return "node/{$gid}";
}