File Coverage

blib/lib/HTML/FormFu/Element/Text.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 287     287   3973 use strict;
  287         646  
  287         17884  
2              
3             package HTML::FormFu::Element::Text;
4             $HTML::FormFu::Element::Text::VERSION = '2.07';
5             # ABSTRACT: Text form field
6              
7 287     287   4366 use Moose;
  287         1118  
  287         2340  
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('text');
17              
18             return;
19             };
20              
21             __PACKAGE__->meta->make_immutable;
22              
23             1;
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             HTML::FormFu::Element::Text - Text form field
34              
35             =head1 VERSION
36              
37             version 2.07
38              
39             =head1 SYNOPSIS
40              
41             my $element = $form->element( Text => 'foo' );
42              
43             =head1 DESCRIPTION
44              
45             Text form field.
46              
47             =head1 SEE ALSO
48              
49             Is a sub-class of, and inherits methods from
50             L<HTML::FormFu::Role::Element::Input>,
51             L<HTML::FormFu::Role::Element::Field>,
52             L<HTML::FormFu::Element>.
53              
54             L<HTML::FormFu>
55              
56             =head1 AUTHOR
57              
58             Carl Franks, C<cfranks@cpan.org>
59              
60             =head1 LICENSE
61              
62             This library is free software, you can redistribute it and/or modify it under
63             the same terms as Perl itself.
64              
65             =head1 AUTHOR
66              
67             Carl Franks <cpan@fireartist.com>
68              
69             =head1 COPYRIGHT AND LICENSE
70              
71             This software is copyright (c) 2018 by Carl Franks.
72              
73             This is free software; you can redistribute it and/or modify it under
74             the same terms as the Perl 5 programming language system itself.
75              
76             =cut