Quote:
Originally Posted by Andreas
If it is a "static" link - yes, it should be added to the navigation table upon Add-on installation.
(Which will happen automatically if you have already added that link on your developement system, assigned in to the Add-on and exported the XML).
|
But if it's not a static link? I'm supposed to tell user's to do it themselves now because vBulletin thinks they want more control over their navbar? Respectfully, most user's do not want total control, they want things done for them.
I've come up with this code, it's not efficient but it works, I will work on efficiency-
nhawk I know you mentioned making a database change but I prefer to avoid db edits if possible.
This example adds a link to Quick Links
No phrase needed.
On
navigation_tab_complete hook:
PHP Code:
//Quick Links Add in 4.2.0 Start
foreach ($tabdata AS $key => &$thistab)
{
if (is_array($thistab['children']))
{
foreach ($thistab['children'] AS &$ttab)
{
if ($ttab['name'] == 'vbmenu_qlinks')
{
$nl['root'] = $key;
$nl['type'] = 'link';
$nl['url'] = 'myfile.php';
$nl['title'] = 'Link Title';
$nl['name'] = 'custom_name_here';
$nl['children'] = 0;
$ttab['children'][] = $nl;
}
}
}
}
//Quick Links Add 4.2.0 END
Mind you that needs to be run for each new link which itself will likely be some kind of loop.