| Form::Factory::Feature - Interface for objects that modify how actions work |
Form::Factory::Feature - Interface for objects that modify how actions work
version 0.014
package MyApp::Feature::Foo; use Moose;
with qw( Form::Factory::Feature );
package Form::Factory:;Feature::Custom::Foo; sub register_implementation { 'MyApp::Feature::Foo' }
A feature modifies what the form does during processing.
The short name of the feature. This is automatically built from the feature's class name.
The action this feature has been attached to.
This is the the Form::Factory::Result::Single manpage recording the success or failure of the parts of this feature.
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 - Interface for objects that modify how actions work |