line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Braintree::AdvancedSearch; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
39
|
|
4
|
1
|
|
|
1
|
|
5
|
use vars qw(@ISA @EXPORT_OK); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
48
|
|
5
|
1
|
|
|
1
|
|
4
|
use Exporter; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
148
|
|
6
|
|
|
|
|
|
|
our @ISA = qw(Exporter); |
7
|
|
|
|
|
|
|
our @EXPORT_OK = qw(search_to_hash); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
sub search_to_hash { |
10
|
0
|
|
|
0
|
0
|
|
my ($self,$search) = @_; |
11
|
0
|
|
|
|
|
|
my $hash = {}; |
12
|
0
|
|
|
|
|
|
for my $attribute ($search->meta()->get_all_attributes) { |
13
|
0
|
|
|
|
|
|
my $field = $attribute->name; |
14
|
0
|
0
|
|
|
|
|
if ($search->$field->active()) { |
15
|
0
|
|
|
|
|
|
$hash->{$field} = $search->$field->criteria; |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
} |
18
|
0
|
|
|
|
|
|
return $hash; |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |