File Coverage

blib/lib/HTML/FormFu/Element/Hidden.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 41     41   1368 use strict;
  41         95  
  41         2545  
2              
3             package HTML::FormFu::Element::Hidden;
4             $HTML::FormFu::Element::Hidden::VERSION = '2.07';
5             # ABSTRACT: Hidden form field
6              
7 41     41   491 use Moose;
  41         96  
  41         447  
8              
9             extends 'HTML::FormFu::Element';
10              
11             with 'HTML::FormFu::Role::Element::Input';
12              
13             after BUILD => sub {
14             my $self = shift;
15              
16             $self->field_type('hidden');
17             $self->container_tag(undef);
18              
19             $self->layout( [ 'field', ] );
20              
21             return;
22             };
23              
24             __PACKAGE__->meta->make_immutable;
25              
26             1;
27              
28             __END__
29              
30             =pod
31              
32             =encoding UTF-8
33              
34             =head1 NAME
35              
36             HTML::FormFu::Element::Hidden - Hidden form field
37              
38             =head1 VERSION
39              
40             version 2.07
41              
42             =head1 SYNOPSIS
43              
44             my $e = $form->element( Hidden => 'foo' );
45              
46             =head1 DESCRIPTION
47              
48             Hidden form field.
49              
50             =head1 METHODS
51              
52             =head1 SEE ALSO
53              
54             Is a sub-class of, and inherits methods from
55             L<HTML::FormFu::Role::Element::Input>,
56             L<HTML::FormFu::Role::Element::Field>,
57             L<HTML::FormFu::Element>
58              
59             L<HTML::FormFu>
60              
61             =head1 AUTHOR
62              
63             Carl Franks, C<cfranks@cpan.org>
64              
65             =head1 LICENSE
66              
67             This library is free software, you can redistribute it and/or modify it under
68             the same terms as Perl itself.
69              
70             =head1 AUTHOR
71              
72             Carl Franks <cpan@fireartist.com>
73              
74             =head1 COPYRIGHT AND LICENSE
75              
76             This software is copyright (c) 2018 by Carl Franks.
77              
78             This is free software; you can redistribute it and/or modify it under
79             the same terms as the Perl 5 programming language system itself.
80              
81             =cut