File Coverage

blib/lib/HTML/FormFu/Inflator/Callback.pm
Criterion Covered Total %
statement 15 16 93.7
branch n/a
condition 1 2 50.0
subroutine 5 6 83.3
pod 0 1 0.0
total 21 25 84.0


line stmt bran cond sub pod time code
1             package HTML::FormFu::Inflator::Callback;
2              
3 2     2   499 use strict;
  2         2  
  2         80  
4             our $VERSION = '2.05'; # VERSION
5              
6 2     2   8 use Moose;
  2         2  
  2         11  
7 2     2   7831 use MooseX::Attribute::FormFuChained;
  2         3  
  2         154  
8             extends 'HTML::FormFu::Inflator';
9              
10             has callback => ( is => 'rw', traits => ['FormFuChained'] );
11              
12             sub inflator {
13 2     2 0 3 my ( $self, $value ) = @_;
14              
15 2   50 0   39 my $callback = $self->callback || sub {shift};
  0            
16              
17             ## no critic (ProhibitNoStrict);
18 2     2   9 no strict 'refs';
  2         2  
  2         118  
19              
20 2         6 return $callback->($value);
21             }
22              
23             __PACKAGE__->meta->make_immutable;
24              
25             1;
26              
27             __END__
28              
29             =head1 NAME
30              
31             HTML::FormFu::Inflator::Callback - Callback inflator
32              
33             =head1 VERSION
34              
35             version 2.05
36              
37             =head1 SYNOPSIS
38              
39             $field->inflator('Callback')->callback( \&my_callback );
40              
41             ---
42             elements:
43             - type: Text
44             name: foo
45             inflators:
46             - type: Callback
47             callback: "main::my_inflator"
48              
49             =head1 DESCRIPTION
50              
51             Callback inflator.
52              
53             =head1 METHODS
54              
55             =head2 callback
56              
57             Arguments: \&code-reference
58              
59             Arguments: "subroutine-name"
60              
61             =head1 SEE ALSO
62              
63             Is a sub-class of, and inherits methods from L<HTML::FormFu::Inflator>
64              
65             L<HTML::FormFu::FormFu>
66              
67             =head1 AUTHOR
68              
69             Carl Franks C<cfranks@cpan.org>
70              
71             =head1 LICENSE
72              
73             This library is free software, you can redistribute it and/or modify it under
74             the same terms as Perl itself.