• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/Module/H01-Mar-2010-1,8851,378

lib/Catalyst/Plugin/H01-Mar-2010-10122

t/H01-Mar-2010-17358

.shipitH A D22-Feb-2010315 85

ChangesH A D01-Mar-2010949 2825

MANIFESTH A D01-Mar-2010494 2221

META.ymlH A D01-Mar-2010571 2827

Makefile.PLH A D01-Mar-2010507 1915

READMEH A D15-Feb-2010680 3523

README

1NAME
2    Catalyst::Plugin::FormValidator - FormValidator for Catalyst
3
4SYNOPSIS
5        use Catalyst 'FormValidator';
6
7        $c->form( optional => ['rest'] );
8        print $c->form->valid('rest');
9
10DESCRIPTION
11    Data::FormValidator plugin.
12
13  EXTENDED METHODS
14   prepare
15  METHODS
16   form
17    Merge values with FormValidator.
18
19        $c->form( required => ['yada'] );
20
21    Returns a "Data::FormValidator::Results" object.
22
23        $c->form->valid('rest');
24
25SEE ALSO
26    Catalyst, Data::FormValidator
27
28AUTHOR
29    Sebastian Riedel, "sri@cpan.org"
30
31COPYRIGHT
32    This program is free software, you can redistribute it and/or modify it
33    under the same terms as Perl itself.
34
35