NAME

Validator::Lazy::Role::Check::Phone

VERSION

Version 0.02

SYNOPSIS

use Validator::Lazy;
my $v = Validator::Lazy->new( { phone => { Phone => { mobile|not_mobile => 1/0, cc|country => [] } } } );
my $v = Validator::Lazy->new( { phone => { Phone => [ mobile|not_mobile|your_country_code(s)     ] } } );

my $ok = $v->check( phone => 'xxxxx' );  # ok is false
say Dumper $v->errors;  # [ { code => 'PHONE_BAD_FORMAT', field => 'phone', data => { } } ]

my $v = Validator::Lazy->new( { phone => { Phone => { mobile => 1, cc => [ 'US', 'CA' ] } } } );
my $v = Validator::Lazy->new( { phone => [ 'mobile', 'US', 'CA' ] } );

DESCRIPTION

An internal Role for Validator::Lazy, part of Validator::Lazy package.

Provides "Phone" type for Validator::Lazy config.
Allows to check value as Phone number.

METHODS

check

Called from inside if Validator::Lazy->check process

Temporary overrides internal Validator::Lazy::check method like this:

$validator->check( $value, $param );

$param - is a list = [ mobile|not_mobile|2chars_values_traits_as_allowed_country_codes ]
OR
$param - is a hash = { mobile => 1, not_mobile => 1, cc => ['list or string'] ]

all params are optional
in case, whel all params are omitted, then simple phone check will be done.

$value - your value to check

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

perldoc Validator::Lazy

You can also look for information at:

    RT, CPAN's request tracker (report bugs here)
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Validator-Lazy

    AnnoCPAN, Annotated CPAN documentation
        http://annocpan.org/dist/Validator-Lazy

    CPAN Ratings
        http://cpanratings.perl.org/d/Validator-Lazy

    Search CPAN
        http://search.cpan.org/dist/Validator-Lazy/

AUTHOR

ANTONC <antonc@cpan.org>

LICENSE

This program is free software; you can redistribute it and/or modify it
under the terms of the the Artistic License (2.0). You may obtain a
copy of the full license at:

L<http://www.perlfoundation.org/artistic_license_2_0>