File Coverage

blib/lib/HTML/FormFu/Element/Src.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 2     2   853 use strict;
  2         4  
  2         116  
2              
3             package HTML::FormFu::Element::Src;
4             $HTML::FormFu::Element::Src::VERSION = '2.07';
5             # ABSTRACT: custom HTML element
6              
7 2     2   13 use Moose;
  2         4  
  2         13  
8             extends 'HTML::FormFu::Element::Block';
9              
10             after BUILD => sub {
11             my $self = shift;
12              
13             $self->tag(undef);
14              
15             return;
16             };
17              
18             __PACKAGE__->meta->make_immutable;
19              
20             1;
21              
22             __END__
23              
24             =pod
25              
26             =encoding UTF-8
27              
28             =head1 NAME
29              
30             HTML::FormFu::Element::Src - custom HTML element
31              
32             =head1 VERSION
33              
34             version 2.07
35              
36             =head1 DESCRIPTION
37              
38             Allows you to add markup directly into the form, without surrounding
39             C<< <div> </div> >> tags.
40              
41             =head1 SEE ALSO
42              
43             Is a sub-class of, and inherits methods from
44             L<HTML::FormFu::Element::Block>,
45             L<HTML::FormFu::Element>
46              
47             L<HTML::FormFu>
48              
49             =head1 AUTHOR
50              
51             Carl Franks, C<cfranks@cpan.org>
52              
53             =head1 LICENSE
54              
55             This library is free software, you can redistribute it and/or modify it under
56             the same terms as Perl itself.
57              
58             =head1 AUTHOR
59              
60             Carl Franks <cpan@fireartist.com>
61              
62             =head1 COPYRIGHT AND LICENSE
63              
64             This software is copyright (c) 2018 by Carl Franks.
65              
66             This is free software; you can redistribute it and/or modify it under
67             the same terms as the Perl 5 programming language system itself.
68              
69             =cut