function book_remove_button_submit

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/book/book.pages.inc \book_remove_button_submit()

Form submission handler for book_outline_form().

Redirects to removal confirmation form.

See also

book_outline_form_submit()

1 string reference to 'book_remove_button_submit'
book_outline_form in drupal-7.x/modules/book/book.pages.inc
Form constructor for the book outline form.

Archivo

drupal-7.x/modules/book/book.pages.inc, line 175
User page callbacks for the book module.

Código

function book_remove_button_submit($form, &$form_state) {
  $form_state['redirect'] = 'node/' . $form['#node']->nid . '/outline/remove';
}