Quote:
Originally Posted by JokeAss
That would rock.
One thing that you should add - is that the plugin automatically adds a link in the navbar.
Just make a hook in parse_templates, and do ex.
PHP Code:
$vbulletin->templatecache['navbar'] = str_replace('vbphrase[faq]</a></td>','vbphrase[faq]</a></td><td class="vbmenu_control"><a href="'.$vbulletin->options['bburl'].'/vbugs.php">Bug Tracker</a></td>',$vbulletin->templatecache['navbar']);

|
I have added one phrase into "vBulletin Global" named "vbugs_tracker" => "vBug Tracker"
After create new custom template named "vbugs_navbar_link" and insert into this code:
HTML Code:
<td class="vbmenu_control"><a href="vbugs.php$session[sessionurl_q]">$vbphrase[vbug_tracker]</a></td>
And for finish create new Plugin for vbugs named "vBug Tracker - Navbar Link Template" with this code inside:
PHP Code:
eval('$template_hook[navbar_buttons_right] .= "' . fetch_template('vbug_navbar_link') . '";');
For now not released new version of this script. Before require to authorization for update and after if the author autorize me, releasing
Regards.