| Form::Factory::Feature::Functional - A generic feature for actions |
Form::Factory::Feature::Functional - A generic feature for actions
version 0.014
package MyApp::Action::Foo; use Form::Factory::Processor;
has_cleaner squeaky => sub { my $action = shift; # clean up the action input here... };
has_checker black_or_read => sub { my $action = shift; # check the action input here... };
has_pre_processor remember_cpp => sub { my $action = shift; # run code just before processing here... };
has_post_processor industrial_something => sub { my $action = shift; # run code just after processing here... };
You probably don't want to use this feature directly. The various helpers imported when you use the Form::Factory::Processor manpage actually use this feature for implementation. You probably want to use those instead.
An array of subroutines to run during the clean phase.
An array of subroutines to run during the check phase.
An array of subroutines to run during the pre-process phase.
An array of subroutines to run during the post-process phase.
Run all the subroutines in cleaner_code.
Run all the subroutines in checker_code.
Run all the subroutines in pre_processor_code.
Run all the subroutines in post_processor_code.
Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
Copyright 2009 Qubling Software LLC.
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.
| Form::Factory::Feature::Functional - A generic feature for actions |