Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

html::formfu::plugin(3pm) [debian man page]

HTML::FormFu::Plugin(3pm)				User Contributed Perl Documentation				 HTML::FormFu::Plugin(3pm)

NAME
HTML::FormFu::Plugin - base class for plugins DESCRIPTION Plugins can be added to a form or any element to modify their behaviour. Some plugins should only be added to either a form, or an element, depending on their design. METHODS
Plugins can override any of the following method stubs. process Only plugins added to a form or a field element inheriting from HTML::FormFu::Element::_Field will have their "process" method run. For form plugins, is called during "process" in HTML::FormFu, before "process" is called on any elements. For field plugins, is called during the field's "process" call. pre_process For form plugins, is called immediately after "pre_process" is run on the elements. For element plugins, is called before "pre_process" is run on form plugins. post_process For form plugins, is called immediately before "process" in HTML::FormFu returns. For element plugins, is called before "post_process" is run on form plugins. render Only plugins added to a form will have their "render" method run. Is called during "render" in HTML::FormFu before the "render_method" in HTML::FormFu is called. post_render Only plugins added to a form will have their "post_render" method run. Is called during "render" in HTML::FormFu immediately before "render" in HTML::FormFu return. Is passed a reference to the return value of "render_method" in HTML::FormFu. CORE PLUGINS
HTML::FormFu::Plugin::StashValid AUTHOR
Carl Franks, "cfranks@cpan.org" LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-23 HTML::FormFu::Plugin(3pm)

Check Out this Related Man Page

HTML::FormFu::Validator(3pm)				User Contributed Perl Documentation			      HTML::FormFu::Validator(3pm)

NAME
HTML::FormFu::Validator - Validator Base Class SYNOPSIS
DESCRIPTION
METHODS
CORE VALIDATORS
BEST PRACTICES
Try to avoid using callbacks if possible. Below is a more maintainable and reusable approach, which also keeps the code out of the controller. A normal application's directory would contain: lib/HTML/FormFu/Constraint/MyApp/ lib/HTML/FormFu/Validator/MyApp/ lib/HTML/FormFu/Plugin/MyApp/ etc. Then, the form config file would just need: validator: 'MyApp::SomeValidator' And the class would be something like this: package HTML::FormFu::Validator::MyApp::SomeValidator; use strict; use warnings; use base 'HTML::FormFu::Validator'; sub validate_value { my ( $self, $value, $params ) = @_; my $c = $self->form->stash->{context}; return 1 if $c->model('DBIC')->is_valid($value); # assuming you want to return a custom error message # which perhaps includes something retrieved from the model # otherwise, just return 0 die HTML::FormFu::Exception::Validator->new({ message => 'custom error message', }); } 1; HTML::FormFu::Validator::Callback AUTHOR
Carl Franks, "cfranks@cpan.org" LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2011-05-10 HTML::FormFu::Validator(3pm)
Man Page

3 More Discussions You Might Find Interesting

1. Solaris

installing flash player

I download the files from Adobe, and place them in /opt/firefox/plugins i made sure to chown and chmod them to be the same as the other 2 plugins that i have in there. when i try to open a file .html that has links to a .swf it keeps asking me to install the player did i do something wrong? (9 Replies)
Discussion started by: deaconf19
9 Replies

2. Shell Programming and Scripting

Create a html file if a process is running??

Hi All, I need to check for a process, if the process is running then I have to create an HTML file, say A.HTML. If the process is not running then I have to rename the existing html, say A.HTML to B.HTML so that the process which looks for the file A.HTML does not find it? How do I do... (1 Reply)
Discussion started by: Hangman2
1 Replies

3. Programming

Popular Plugins && SVN

Forgive me if this is a rather stupid but I am writing some code using Python for a project at work and was wondering if there was a way to download the entire "Popular" plugins directory in a single shot? I currently have to to look at 34 pages: https://wordpress.org/plugins/browse/popular/... (4 Replies)
Discussion started by: metallica1973
4 Replies