|
NAMEHTML::Shakan::Declare - declare the form SYNOPSIS # declare
{
package My::Form;
use HTML::Shakan::Declare;
form 'add' => (
TextField(
name => 'name',
required => 1,
),
TextField(
name => 'email',
required => 1,
),
);
}
# use it
{
my $form = My::Form->get(
'add' => (
request => CGI->new,
)
);
$form->render;
}
DESCRIPTIONThis module supports to generate form using declare style. FUNCTIONSThis module exports HTML::Shakan::Fields's exported functions and following functions.
EXPORTED METHODS
AUTHORSTokuhiro Matsuno SEE ALSOHTML::Shakan
|