I want the Software sub-menu to display whenever the software_page or other static pages linked below appear. I believe I can do this by embedding the THIS_SCRIPT statement into each of the linked php files.
Here is my plugin (the links are un-populated at this time), using the Hook location process_templates_complete:
$tablinks = '';
if (THIS_SCRIPT == 'software_navtab')
{
$vbulletin->options['selectednavtab']='navtab_software';
$tabselected = ' class="selected"';
$tablinks = ' <ul class="floatcontainer">
<li><a href="link1.php">Link 1</a></li>
<li><a href="link2.php">Link 2</a></li>
<li><a href="link3.php">Link 3</a></li>
</ul> ';
}
$template_hook['navtab_end'] .= '<li'.$tabselected.'><a class="navtab" href="content.php?124-software_page">Software</a>'.$tablinks.'</li>' ;
I created the page by simply clicking the Create <static page> button from CMS which gave it the name: content.php?124-software_page. So even though it says it is a static page, it appears to be dynamic and doesn't exist as a php file I can modify.
Should I be creating this page differently - Dreamweaver, for example? I know that I can then embed php codes into the file. If so, I assume that I'll need to also embed the Header and Footer code to maintain visual consistency.
Perhaps I'm going about this all wrong - I was not expecting to have to learn php to modify a menu in a CMS system and this is the only thing I've come up with so far.
Thanks for your help.
Lloyd
|