Name

ProductFiles — specify all databases containing products that form one big "products" database

SYNOPSIS

database_name...

DESCRIPTION

Specify database tables that should be, all together, logically seen as one bigger products database.

For example, when doing product searches, all ProductFiles databases will be searched.

DIRECTIVE TYPE AND DEFAULT VALUE

Catalog directive

EXAMPLES

Example: Setting ProductFiles

ProductFiles vendor_a vendor_b

NOTES

This directive is also available through an alias DefaultTables.

AVAILABILITY

ProductFiles is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 562

['ProductFiles',   'array_complete',  'products'],

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!