line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# ABSTRACT: MinSum Directive for Validation Class Field Definitions |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package Validation::Class::Directive::MinSum; |
4
|
|
|
|
|
|
|
|
5
|
108
|
|
|
108
|
|
68915
|
use strict; |
|
108
|
|
|
|
|
218
|
|
|
108
|
|
|
|
|
2882
|
|
6
|
108
|
|
|
108
|
|
538
|
use warnings; |
|
108
|
|
|
|
|
209
|
|
|
108
|
|
|
|
|
2957
|
|
7
|
|
|
|
|
|
|
|
8
|
108
|
|
|
108
|
|
529
|
use base 'Validation::Class::Directive'; |
|
108
|
|
|
|
|
200
|
|
|
108
|
|
|
|
|
7717
|
|
9
|
|
|
|
|
|
|
|
10
|
108
|
|
|
108
|
|
581
|
use Validation::Class::Util; |
|
108
|
|
|
|
|
202
|
|
|
108
|
|
|
|
|
795
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '7.900057'; # VERSION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has 'mixin' => 1; |
16
|
|
|
|
|
|
|
has 'field' => 1; |
17
|
|
|
|
|
|
|
has 'multi' => 0; |
18
|
|
|
|
|
|
|
has 'message' => '%s must be greater than %s'; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
sub validate { |
21
|
|
|
|
|
|
|
|
22
|
4
|
|
|
4
|
0
|
9
|
my $self = shift; |
23
|
|
|
|
|
|
|
|
24
|
4
|
|
|
|
|
8
|
my ($proto, $field, $param) = @_; |
25
|
|
|
|
|
|
|
|
26
|
4
|
50
|
33
|
|
|
22
|
if (defined $field->{min_sum} && defined $param) { |
27
|
|
|
|
|
|
|
|
28
|
4
|
|
|
|
|
7
|
my $min_sum = $field->{min_sum}; |
29
|
|
|
|
|
|
|
|
30
|
4
|
50
|
33
|
|
|
22
|
if ( $field->{required} || $param ) { |
31
|
|
|
|
|
|
|
|
32
|
4
|
100
|
|
|
|
12
|
if (int($param) < int($min_sum)) { |
33
|
|
|
|
|
|
|
|
34
|
1
|
|
|
|
|
10
|
$self->error(@_, $min_sum); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
} |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
} |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
} |
41
|
|
|
|
|
|
|
|
42
|
4
|
|
|
|
|
13
|
return $self; |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
} |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
1; |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
__END__ |