Name

AllowRemoteSearch — specify database tables accessible for remote searches

SYNOPSIS

table_name...

DESCRIPTION

DIRECTIVE TYPE AND DEFAULT VALUE

Catalog directive

EXAMPLES

No examples are available at this time. We do consider this a problem and will try to supply some.

NOTES

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.

AVAILABILITY

AllowRemoteSearch is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 622

['AllowRemoteSearch',    'array_complete',     'products variants options'],

Source: lib/Vend/Config.pm
Line 3838 (context shows lines 3838-3851)

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;
}

AUTHORS

Interchange Development Group

SEE ALSO

DocBook! Interchange!