NAME

Form::Factory::Feature::Control::MatchCode - Greps the control value for correctness

VERSION

version 0.005

SYNOPSIS

has_control even_value => (
    control => 'text',
    features => {
        match_code => {
            message => 'the value in %s is not even',
            code    => sub { shift % 2 == 0 },
        },
    },
);

DESCRIPTION

Runs the control value against a code reference during the check. If that code reference returns a false value, an error is generated.

ATTRIBUTES

code

This is the code reference. It should expect a single argument to be passed, which is the value to check.

METHODS

check_control

Checks to make sure the control does either Form::Factory::Control::Role::ScalarValue or Form::Factory::Control::Role::ListValue.

check_value

Does the work of running the given subroutine over the control value and reports an error if the code reference runs and returns a false value.

AUTHOR

Andrew Sterling Hanenkamp <hanenkamp@cpan.org>

COPYRIGHT AND LICENSE

Copyright 2009 Qubling Software LLC.

This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.