Quote:
Originally Posted by Lynne
If you want to add in a condition, you could do something like this for say, arcade.php to only usergroup 5,6, ad 7:
PHP Code:
$tablinks = '<ul class="floatcontainer">
<li><a href="URL LINK">Prediction League</a></li>
<li class="popupmenu">
<a href="javascript://" class="popupctrl">Drop Down</a>
<ul class="popupbody popuphover">';
if (is_member_of($vbulletin->userinfo, 5, 6, 7))
{
$tablinks .= '<li><a href="arcade.php">Arcade</a></li>';
}
$tablinks .= ' <li><a href="gameroom.php">Gameroom</a></li>
<li><a href="THE LINK TO FORUM">Forum</a></li>
</ul>
</li>
<li><a href="URL LINK">Gallery</a></li>
</ul> ';
That isn't tested, but it should work. And, there is no reason you can't make external links.
Sorry, but I still don't understand your question. That is not a vb4 site at all.
|
Thank you very much lynne, am at a loss thou with the
Code:
if (THIS_SCRIPT == 'yourpage')
Where do you get that from?