| Form-Factory documentation | view source | Contained in the Form-Factory distribution. |
Form::Factory::Feature - Interface for objects that modify how actions work
version 0.020
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 Form::Factory::Result::Single 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 documentation | view source | Contained in the Form-Factory distribution. |