A tree are the links after "You are here" near the top of the forums.
In the PHP file you upload to "your_forums/main/" is the file we add the tree to.
You need to add "$tree" to the list of globals. Below the globals we add the code to create the tree.
PHP Code global $tree;
$tree = array();//Board tree for users location
$tree[] = array('l' => $globals['index_url'],
'txt' => 'Index');
$tree[] = array('l' => $globals['index_url'].'act=your_mod_Location',
'txt' => 'Title of Mod',
'prefix' => 'Viewing ');
|