|
NAMEHTML::FormFu::Filter::Callback - filter with custom subroutineVERSIONversion 2.07SYNOPSIS$field->filter({ type => 'Callback', callback => \&my_filter, }); --- elements: - type: Text name: foo filters: - type: Callback callback: "main::my_filter" sub my_filter { my ($value) = @_; # do something to $value return $value; } DESCRIPTIONFilter using a user-provided subroutine.METHODScallbackArguments: \&code-referenceArguments: "subroutine-name" AUTHORCarl Franks, "cfranks@cpan.org"Based on the original source code of HTML::Widget::Filter::Callback, by Lyo Kato, "lyo.kato@gmail.com" LICENSEThis library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.AUTHORCarl Franks <cpan@fireartist.com>COPYRIGHT AND LICENSEThis 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.
Visit the GSP FreeBSD Man Page Interface. |