use strict;
package HTML::FormFu::Validator::Callback;
$HTML::FormFu::Validator::Callback::VERSION = '2.07';
# ABSTRACT: Callback validator
use Moose;
use MooseX::Attribute::Chained;
extends 'HTML::FormFu::Validator';
has callback => ( is => 'rw', traits => ['Chained'] );
sub validate_value {
my ( $self, $value, $params ) = @_;
my $callback = $self->callback || sub {1};
## no critic (ProhibitNoStrict);
no strict 'refs';
my $ok = $callback->( $value, $params );
return $ok;
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
HTML::FormFu::Validator::Callback - Callback validator
=head1 VERSION
version 2.07
=head1 SYNOPSIS
$field->validator('Callback')->callback( \&my_validator );
---
elements:
- type: Text
name: foo
validators:
- type: Callback
callback: "main::my_validator"
=head1 DESCRIPTION
Callback validator.
The first argument passed to the callback is the submitted value for the
associated field. The second argument passed to the callback is a hashref of
name/value pairs for all input fields.
=head1 METHODS
=head2 callback
Arguments: \&code-reference
Arguments: "subroutine-name"
=head1 SEE ALSO
Is a sub-class of, and inherits methods from L<HTML::FormFu::Validator>
L<HTML::FormFu>
=head1 AUTHOR
Carl Franks C<cfranks@cpan.org>
=head1 LICENSE
This library is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
=head1 AUTHOR
Carl Franks <cpan@fireartist.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2018 by Carl Franks.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut