1HTML::FormHandler::WizaUrsde(r3)Contributed Perl DocumenHtTaMtLi:o:nFormHandler::Wizard(3)
2
3
4
6 HTML::FormHandler::Wizard - create a multi-page form
7
9 version 0.40068
10
12 This feature is EXPERIMENTAL. That means that the interface may change,
13 and that it hasn't been fully implemented. We are actively looking for
14 input, so if you are interested in this feature, please show up on the
15 FormHandler mailing list or irc channel (#formhandler on irc.perl.org)
16 to discuss.
17
18 package Test::Wizard;
19 use HTML::FormHandler::Moose;
20 extends 'HTML::FormHandler::Wizard';
21
22 has_field 'foo';
23 has_field 'bar';
24 has_field 'zed';
25
26 has_page 'one' => ( fields => ['foo'] );
27 has_page 'two' => ( fields => ['bar'] );
28 has_page 'three' => ( fields => ['zed'] );
29
30 ...
31
32 my $stash = {};
33 my $wizard = Test::Wizard->new( stash => $stash );
34 $wizard->process( params => $params );
35
37 FormHandler Contributors - see HTML::FormHandler
38
40 This software is copyright (c) 2017 by Gerda Shank.
41
42 This is free software; you can redistribute it and/or modify it under
43 the same terms as the Perl 5 programming language system itself.
44
45
46
47perl v5.36.0 2022-07-22 HTML::FormHandler::Wizard(3)