custom/menu_helper/menu_helper_blocks/menu_helper_blocks.module, line 489
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.
menu_helper_blocks_content_form_submit()
<?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);
}
?>