The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

FormValidator::Simple::Plugin::Math - Math evaluation for FormValidator::Simple

VERSION

Version 0.03

SYNOPSIS

You can evalute the form data with math expression.

    use FormValidator::Simple qw/Math/;
    
    my $result = FormValidator::Simple->check( $req => [
        category => [ 'NOT_BLANK', ['MATH', 'x % 100', '!0']],
        ### valid if category % 100 != 0
    ]);

EVALUATION

    ['MATH', some_math_expression, is_what]

some_math_expression

x is the value to be passed. e.g. x**3

is_what

Sets some number.

Switches the true-false evaluation if is_what starts with !.

AUTHOR

Yusuke Sugiyama, <ally at blinkingstar.net>

BUGS

Please report any bugs or feature requests to bug-formvalidator-simple-plugin-math at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=FormValidator-Simple-Plugin-Math. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc FormValidator::Simple::Plugin::Math

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2007 Yusuke Sugiyama, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.