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 2     2   2557 use strict;
  2         5  
  2         143  
2              
3             package HTML::FormFu::Inflator::Callback;
4             $HTML::FormFu::Inflator::Callback::VERSION = '2.07';
5             # ABSTRACT: Callback inflator
6              
7 2     2   14 use Moose;
  2         3  
  2         17  
8 2     2   12968 use MooseX::Attribute::Chained;
  2         5  
  2         234  
9             extends 'HTML::FormFu::Inflator';
10              
11             has callback => ( is => 'rw', traits => ['Chained'] );
12              
13             sub inflator {
14 2     2 0 5 my ( $self, $value ) = @_;
15              
16 2   50 0   44 my $callback = $self->callback || sub {shift};
  0            
17              
18             ## no critic (ProhibitNoStrict);
19 2     2   13 no strict 'refs';
  2         3  
  2         169  
20              
21 2         9 return $callback->($value);
22             }
23              
24             __PACKAGE__->meta->make_immutable;
25              
26             1;
27              
28             __END__
29              
30             =pod
31              
32             =encoding UTF-8
33              
34             =head1 NAME
35              
36             HTML::FormFu::Inflator::Callback - Callback inflator
37              
38             =head1 VERSION
39              
40             version 2.07
41              
42             =head1 SYNOPSIS
43              
44             $field->inflator('Callback')->callback( \&my_callback );
45              
46             ---
47             elements:
48             - type: Text
49             name: foo
50             inflators:
51             - type: Callback
52             callback: "main::my_inflator"
53              
54             =head1 DESCRIPTION
55              
56             Callback inflator.
57              
58             =head1 METHODS
59              
60             =head2 callback
61              
62             Arguments: \&code-reference
63              
64             Arguments: "subroutine-name"
65              
66             =head1 SEE ALSO
67              
68             Is a sub-class of, and inherits methods from L<HTML::FormFu::Inflator>
69              
70             L<HTML::FormFu::FormFu>
71              
72             =head1 AUTHOR
73              
74             Carl Franks C<cfranks@cpan.org>
75              
76             =head1 LICENSE
77              
78             This library is free software, you can redistribute it and/or modify it under
79             the same terms as Perl itself.
80              
81             =head1 AUTHOR
82              
83             Carl Franks <cpan@fireartist.com>
84              
85             =head1 COPYRIGHT AND LICENSE
86              
87             This software is copyright (c) 2018 by Carl Franks.
88              
89             This is free software; you can redistribute it and/or modify it under
90             the same terms as the Perl 5 programming language system itself.
91              
92             =cut