Same name and namespace in other branches
  1. 10 core/modules/book/book.module \book_pick_book_nojs_submit()
  2. 8.9.x core/modules/book/book.module \book_pick_book_nojs_submit()
  3. 9 core/modules/book/book.module \book_pick_book_nojs_submit()

Form submission handler for node_form().

This handler is run when JavaScript is disabled. It triggers the form to rebuild so that the "Parent item" options are changed to reflect the newly selected book. When JavaScript is enabled, the submit button that triggers this handler is hidden, and the "Book" dropdown directly triggers the book_form_update() Ajax callback instead.

See also

book_form_update()

book_form_node_form_alter()

1 string reference to 'book_pick_book_nojs_submit'
book_form_node_form_alter in modules/book/book.module
Implements hook_form_BASE_FORM_ID_alter() for node_form().

File

modules/book/book.module, line 455
Allows users to create and organize related content in an outline.

Code

function book_pick_book_nojs_submit($form, &$form_state) {
  $form_state['node']->book = $form_state['values']['book'];
  $form_state['rebuild'] = TRUE;
}