NAME
HTML::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;
}
DESCRIPTION
This module supports to generate form using declare style.
FUNCTIONS
This module exports HTML::Shakan::Fields's exported functions and following functions.
EXPORTED METHODS
- Your::Form::Class->get($name[, %args])
-
Now, your form class provides get method. This method returns instance of HTML::Shakan.
AUTHORS
Tokuhiro Matsuno