function 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'

File

drupal/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;
}