
Egg::Plugin::FillInForm - HTML::FillInForm for Egg.

use Egg qw/ FillInForm /;
__PACKAGE__->egg_startup(
plugin_fillinform => {
fill_password => 0,
ignore_fields => [qw{ param1 param2 }],
...
},
);
$e->fillin_ok(1);
my $output= $e->fillform_render(\$html, $hash);
$e->fillform;

HTML::FillInForm It is a plugin to use.

It is HTML::FillInForm as for the argument. Is passed and the result is returned.
When HTML_TEXT is omitted, $e->response->body is used.
When HASH is omitted, $e->request->params is used.
my $output= $e->fillform_render(\$html, $hash);
The result of 'fillform_render' is set in $e->response->body.
$e->fillform_render(\$html, $hash);
Fillform comes to be done by '_finalize' when keeping effective.
When the check error of this plugin occurs when Egg::Plugin::FormValidator::Simple is loaded, fillform is always done.
$e->fillin_ok(1);

Egg::Release, HTML::FillInForm, Egg::Plugin::FormValidator::Simple, Catalyst::Plugin::FillInForm,

Masatoshi Mizuno <lushe@cpan.org>

Copyright (C) 2008 Bee Flag, Corp. <http://egg.bomcity.com/>.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.