You are here

function group_form_submit_delete in Group 7

Form API submit callback for the delete button.

1 string reference to 'group_form_submit_delete'
group_form in forms/group.inc
Generates the group editing form.

File

forms/group.inc, line 122
Group editing UI.

Code

function group_form_submit_delete($form, &$form_state) {
  $form_state['redirect'] = 'group/' . $form_state['group']->gid . '/delete';
}