Amon2-Plugin-Web-FormValidator-Simple

 view release on metacpan or  search on metacpan

README.mkdn  view on Meta::CPAN


        # if detect errors, return with a error page.
        if ($c->form->has_error) {
            return $c->render('error.tt');
        }

        ...
    };

    # same as C::P::FV::S, you can use messages/messages.yml

    # development.pl
    ...

    +{
        ...

        validator => +{
            message_format => '<p>%s</p>',
            message_decode_from => 'UTF-8',
            # messages => 'messages.yml',
            messages => +{
                account => +{
                    team => +{
                        NOT_BLANK => 'TEAM cannot be blank!',
                        LENGTH => 'TEAM length must be [1, 10]',
                    },
                    name => +{
                        NOT_BLANK => 'NAME cannnot be blank!',
                        LENGTH => 'NAME length must be [1, 10]',
                    },
                },
            },
        },
    };

    # messages.yml

    account:
        team:
            NOT_BLANK: TEAM cannot be blank!
            LENGTH: TEAM length must be [1, 10]
        name:
            NOT_BLANK: NAME cannot be blank!
            LENGTH: NAME length must be [1, 10]

# DESCRIPTION

Amon2::Plugin::Web::FormValidator::Simple is a port of
[Catalyst::Plugin::FormValidator::Simple](http://search.cpan.org/perldoc?Catalyst::Plugin::FormValidator::Simple).
This module has the same methods and options, so see her documents.

# METHODS

- `$c->init()`

initial setup.

- `$c->form()`

validate form/query parameters.

- `$c->set_invalid_form()`

set error from manual validation.

# AUTHOR

JINNOUCHI Yasushi <delphinus@remora.cx>

# SEE ALSO

[Amon2::Web](http://search.cpan.org/perldoc?Amon2::Web)
[FormValidator::Simple](http://search.cpan.org/perldoc?FormValidator::Simple)
[Catalyst::Plugin::FormValidator::Simple](http://search.cpan.org/perldoc?Catalyst::Plugin::FormValidator::Simple)

# LICENSE

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.



( run in 0.793 second using v1.01-cache-2.11-cpan-39bf76dae61 )