AllowRemoteSearch — specify database tables accessible for remote searches
Any table specified in this option will be remotely searchable, and you should not permit any table with sensitive information to be searched in this way. You should carefully consider the implications of adding any further tables to this configuration option.
Interchange 5.7.0:
Source: lib/Vend/Config.pm
Line 617
['AllowRemoteSearch', 'array_complete', 'products variants options'],
Source: lib/Vend/Config.pm
Line 3813 (context shows lines 3813-3826)
sub parse_array_complete {
my($item,$settings) = @_;
return '' unless $settings;
my(@setting) = grep /\S/, split /[\s,]+/, $settings;
my $c = [];
for (@setting) {
check_legal($item, $_);
push @{$c}, $_;
}
$c;
}