Name

MV_TREE_TABLE — database name for tree menus

SYNOPSIS

{ database }

DESCRIPTION

VARIABLE TYPE

Catalog variable

EXAMPLES

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

NOTES

The term database in Interchange lingo has a different meaning as in common language, please check database for more information.

AVAILABILITY

MV_TREE_TABLE is available in Interchange versions:

4.6.0-5.7.0 (git-head)

SOURCE

Interchange 5.7.0:

Source: lib/Vend/Menu.pm
Line 405 (context shows lines 395-409 in old_tree():368)

my $header;
$header = ::interpolate_html($opt->{header_template})
  if $opt->{header_template};
if($header =~ /\S/) {
  $header = Vend::Tags->uc_attr_list($opt, $header);
  push @out, $header;
}

my %defaults = (
      start       => $opt->{tree_selector} || 'Products',
      table       => $::Variable->{MV_TREE_TABLE} || 'tree',
      master      => 'parent_fld',
      subordinate => 'code',
      autodetect  => '1',
      sort        => 'code',

Source: lib/Vend/Menu.pm
Line 538 (context shows lines 528-542 in dhtml_flyout():502)

push @out, <<EOF;
<script language="JavaScript1.3">
var ${vpf}timeoutCode = -1;
var ${vpf}mydiv = '$fdiv';
var ${vpf}lines = new Array;
EOF

my %o = (
    start       => $opt->{tree_selector} || $opt->{name},
    file    => $opt->{file},
    table       => $opt->{table} || $::Variable->{MV_TREE_TABLE} || 'tree',
    master      => 'parent_fld',
    subordinate => 'code',
    autodetect  => '1',
    no_open    => 1,

Source: lib/Vend/Menu.pm
Line 933 (context shows lines 923-937 in file_tree():895)


<div id="${vpf}treebox" style="visibility: Visible">
</div>
<script language="JavaScript1.3">
var ${vpf}lines = new Array;
var ${vpf}sary = new Array;
EOF

my %o = (
    start       => $opt->{tree_selector} || 'Products',
    table       => $opt->{table} || $::Variable->{MV_TREE_TABLE} || 'tree',
    master      => 'parent_fld',
    file    => $opt->{file},
    subordinate => 'code',
    autodetect  => '1',

Source: lib/Vend/Menu.pm
Line 1453 (context shows lines 1443-1457 in dhtml_tree():1416)

push @out, <<EOF;

<div id="${vpf}treebox" style="visibility: Visible">
</div>
<script language="JavaScript1.3">
var ${vpf}lines = new Array;
EOF

my %o = (
    start       => $opt->{tree_selector} || 'Products',
    table       => $opt->{table} || $::Variable->{MV_TREE_TABLE} || 'tree',
    master      => 'parent_fld',
    file    => $opt->{file},
    subordinate => 'code',
    autodetect  => '1',

AUTHORS

Interchange Development Group

SEE ALSO

tree(7ic)

DocBook! Interchange!