NAME
Amon2::Plugin::Web::FillInForm - HTML::FillInForm with Amon2
SYNOPSIS
package
MyApp::Web;
__PACKAGE__->load_plugins(
qw/Web::FillInForm/
);
1;
package
MyApp::Web::C::Root;
sub
post_edit {
my
$c
=
shift
;
$c
->fillin_form(
$c
->req());
$c
->render(
'edit.html'
);
}
1;
DESCRIPTION
Amon2::Plugin::Web::FillInForm is HTML::FillInForm integration with Amon2.
EXPORETED METHODS
This plugin provides $c->fillin_form($stuff)
method to web context object.
This method hook to HTML_FILTER.
AUTHOR
Tokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM>
SEE ALSO
LICENSE
Copyright (C) Tokuhiro Matsuno
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.