menu_helper_blocks_book_form_submit

custom/menu_helper/menu_helper_blocks/menu_helper_blocks.module, line 489

Versions
6
menu_helper_blocks_book_form_submit($form, &$form_state)

Handle form submission for 'Add page to book' blocks.

The form submit handlers redirects to the 'menu_helper_blocks_content_form_submit' handler. which is designed to also process the 'Add page to book' block form's submission.

See also

menu_helper_blocks_content_form_submit()

Code

<?php
function menu_helper_blocks_book_form_submit($form, &$form_state) {
  // Use content form submit which is aware of the add page to book block
  return menu_helper_blocks_content_form_submit($form, $form_state);
}
?>