File Coverage

blib/lib/HTML/FormHandler/Widget/Field/Span.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::Span;
2             # ABSTRACT: button field rendering widget
3             $HTML::FormHandler::Widget::Field::Span::VERSION = '0.40067';
4              
5 2     2   1325 use Moose::Role;
  2         3  
  2         20  
6 2     2   7330 use HTML::FormHandler::Render::Util ('process_attrs');
  2         2  
  2         18  
7 2     2   294 use namespace::autoclean;
  2         2  
  2         18  
8              
9             sub render_element {
10 3     3 0 5 my ( $self, $result ) = @_;
11 3   33     9 $result ||= $self->result;
12              
13 3         6 my $output = '<span';
14 3         80 $output .= ' id="' . $self->id . '"';
15 3         15 $output .= process_attrs($self->element_attributes($result));
16 3         10 $output .= '>';
17 3         139 $output .= $self->value;
18 3         8 $output .= '</span>';
19 3         7 return $output;
20             }
21              
22             sub render {
23 3     3 0 7 my ( $self, $result ) = @_;
24 3   66     46 $result ||= $self->result;
25 3 50       10 die "No result for form field '" . $self->full_name . "'. Field may be inactive." unless $result;
26 3         11 my $output = $self->render_element( $result );
27 3         15 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::Span - button field rendering widget
41              
42             =head1 VERSION
43              
44             version 0.40067
45              
46             =head1 SYNOPSIS
47              
48             Renders the NonEditable pseudo-field as a span.
49              
50             <span id="my_field" class="test">The Field Value</span>
51              
52             =head1 AUTHOR
53              
54             FormHandler Contributors - see HTML::FormHandler
55              
56             =head1 COPYRIGHT AND LICENSE
57              
58             This software is copyright (c) 2016 by Gerda Shank.
59              
60             This is free software; you can redistribute it and/or modify it under
61             the same terms as the Perl 5 programming language system itself.
62              
63             =cut