Quote:
Originally Posted by KirbyDE
> "How to I get a proper navbar?"
$navbits = array('put smth. useful here');
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
I don't think this could be done much easier ... ?
|
I understand where you are coming from, but again, it codes in a dependency on vBulletin and, it clearly more difficult than:
PHP Code:
/* Default navbar based on initial call to vbExtension. */
$navbar = $vbext->get_navbar();
In fact, that call would be unecessary if 'navbar' were specified in the class-creation call.
Or to generate a navbar two-levels deep:
PHP Code:
$navbar = $vbext->get_navbar('Sub-page name');
Both calls work because the title and URL info are available from when the class is created.