Closed (fixed)
Project:
Examples for Developers
Version:
7.x-1.x-dev
Component:
Form Example
Priority:
Minor
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
6 Feb 2012 at 19:55 UTC
Updated:
8 Aug 2012 at 22:25 UTC
FYI: there is no form_example_tutorial_8_submit(), however there is another function not listed: form_example_tutorial_8_page_two_back()
/**
* Example 8: A simple multistep form with a Next and a Back button.
*
* Handbook page: http://drupal.org/node/717750.
*
* For more extensive multistep forms, see
* @link form_example_wizard.inc form_example_wizard.inc @endlink
*
*
* Adds logic to our form builder to give it two pages.
* The @link ajax_example_wizard AJAX Example's Wizard Example @endlink
* gives an AJAX version of this same idea.
*
* @see form_example_tutorial_8_submit()
* @see form_example_tutorial_8_next_validate()
* @see form_example_tutorial_8_page_two()
* @see form_example_tutorial_8_page_two_submit()
* @see form_example_tutorial_8_next_submit()
* @see form_example_tutorial.inc
* @ingroup form_example
*/
function form_example_tutorial_8($form, &$form_state) {...
Comments
Comment #1
mile23Looks like neither form_example_tutorial_8_submit() nor form_example_tutorial_8_validate() were linking to anything. Added form_example_tutorial_8_page_two_back().
Committed: http://drupalcode.org/project/examples.git/commit/ede37eedde5ffde915d329...
Thanks!
Comment #2
mile23