File Coverage

blib/lib/HTML/FormHandler/Widget/Field/Reset.pm
Criterion Covered Total %
statement 23 23 100.0
branch 1 2 50.0
condition 3 6 50.0
subroutine 5 5 100.0
pod 0 2 0.0
total 32 38 84.2


line stmt bran cond sub pod time code
1             package HTML::FormHandler::Widget::Field::Reset;
2             # ABSTRACT: reset field rendering widget
3             $HTML::FormHandler::Widget::Field::Reset::VERSION = '0.40068';
4 3     3   2170 use Moose::Role;
  3         8  
  3         32  
5 3     3   15733 use namespace::autoclean;
  3         8  
  3         39  
6 3     3   258 use HTML::FormHandler::Render::Util ('process_attrs');
  3         8  
  3         29  
7              
8              
9             sub render_element {
10 5     5 0 15 my ( $self, $result ) = @_;
11 5   33     20 $result ||= $self->result;
12              
13 5         12 my $output = '<input type="reset" name="';
14 5         185 $output .= $self->html_name . '"';
15 5         175 $output .= ' id="' . $self->id . '"';
16 5         170 $output .= ' value="' . $self->html_filter($self->_localize($self->value)) . '"';
17 5         37 $output .= process_attrs($self->element_attributes($result));
18 5         21 $output .= ' />';
19 5         18 return $output;
20             }
21              
22             sub render {
23 5     5 0 19 my ( $self, $result ) = @_;
24 5   66     56 $result ||= $self->result;
25 5 50       120 die "No result for form field '" . $self->full_name . "'. Field may be inactive." unless $result;
26 5         30 my $output = $self->render_element( $result );
27 5         37 return $self->wrap_field( $result, $output );
28             }
29              
30             1;
31              
32             __END__
33              
34             =pod
35              
36             =encoding UTF-8
37              
38             =head1 NAME
39              
40             HTML::FormHandler::Widget::Field::Reset - reset field rendering widget
41              
42             =head1 VERSION
43              
44             version 0.40068
45              
46             =head1 SYNOPSIS
47              
48             Renders a reset field
49              
50             =head1 AUTHOR
51              
52             FormHandler Contributors - see HTML::FormHandler
53              
54             =head1 COPYRIGHT AND LICENSE
55              
56             This software is copyright (c) 2017 by Gerda Shank.
57              
58             This is free software; you can redistribute it and/or modify it under
59             the same terms as the Perl 5 programming language system itself.
60              
61             =cut