01-28-2006, 10:00 PM
Administrative Tools Dropdown Menu
What it does: Adds a dropdown menu visible only to the Administrator group for Admin tools and related links.
Time to install: 5 Minutes
Difficulty: Easy
Templates: 1
Phrases: 1
Step 1:
AdminCP -> Languages & Phrases -> Phrase Manager -> Add New Phrase
Phrase Type: Global
Product: vBulletin
Varname: navadmin
Text: Admin Tools
Step 2:
Style & Templates -> Style Manager -> (Your Style) -> Edit Templates -> Navigation / Breadcrumb Templates -> navbar
Find:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
Add AFTER:
<!-- Admin Menu -->
<if condition="$show['admincplink']">
<if condition="$show['popups']">
<!-- start vBMenu control element -->
<td class="vbmenu_control" id="AdminMenu">
<a STYLE="text-decoration:none" href="#">$vbphrase[navadmin]</a>
<script type="text/javascript">
<!--
vbmenu_register("AdminMenu");
//-->
</script>
</td>
<!-- end vBMenu control element -->
</if>
</if>
<!-- /Admin Menu -->
Find:
<!-- / NAVBAR POPUP MENUS -->
Add ABOVE:
<!-- Admin Tools Menu Element -->
<if condition="$show['admincplink']">
<div class="vbmenu_popup" id="AdminMenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Admin Tools</span></td></tr>
<tr><td class="vbmenu_option"><a href="http://option1">First Option</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://option2">Second Option</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://option3">Third Option</a></td></tr>
</table>
</div>
</if>
<!-- /Admin Tools Menu Element -->
Change http://option1/2/3 to the full URL of the option you'd like to link. For example, if you wanted to put a link to the AdminCP in the dropdown, the code would be:
<tr><td class="vbmenu_option"><a href="http://www.yourdomain.tld/forum/admincp/index.php">Admin CP</a></td></tr>
"First/Second/Third Option" is simply the text displayed in the dropdown, edit it to suit whatever it is you're linking to. I personally don't use this for the AdminCP, but I find it useful for linking to PSIStats, Moderator Statistics and my VPS Server's Control Panel.
Screenshot attached.
Please Click https://vborg.vbsupport.ru/ (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=106658) if you are using this. Thanks!
What it does: Adds a dropdown menu visible only to the Administrator group for Admin tools and related links.
Time to install: 5 Minutes
Difficulty: Easy
Templates: 1
Phrases: 1
Step 1:
AdminCP -> Languages & Phrases -> Phrase Manager -> Add New Phrase
Phrase Type: Global
Product: vBulletin
Varname: navadmin
Text: Admin Tools
Step 2:
Style & Templates -> Style Manager -> (Your Style) -> Edit Templates -> Navigation / Breadcrumb Templates -> navbar
Find:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
Add AFTER:
<!-- Admin Menu -->
<if condition="$show['admincplink']">
<if condition="$show['popups']">
<!-- start vBMenu control element -->
<td class="vbmenu_control" id="AdminMenu">
<a STYLE="text-decoration:none" href="#">$vbphrase[navadmin]</a>
<script type="text/javascript">
<!--
vbmenu_register("AdminMenu");
//-->
</script>
</td>
<!-- end vBMenu control element -->
</if>
</if>
<!-- /Admin Menu -->
Find:
<!-- / NAVBAR POPUP MENUS -->
Add ABOVE:
<!-- Admin Tools Menu Element -->
<if condition="$show['admincplink']">
<div class="vbmenu_popup" id="AdminMenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Admin Tools</span></td></tr>
<tr><td class="vbmenu_option"><a href="http://option1">First Option</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://option2">Second Option</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://option3">Third Option</a></td></tr>
</table>
</div>
</if>
<!-- /Admin Tools Menu Element -->
Change http://option1/2/3 to the full URL of the option you'd like to link. For example, if you wanted to put a link to the AdminCP in the dropdown, the code would be:
<tr><td class="vbmenu_option"><a href="http://www.yourdomain.tld/forum/admincp/index.php">Admin CP</a></td></tr>
"First/Second/Third Option" is simply the text displayed in the dropdown, edit it to suit whatever it is you're linking to. I personally don't use this for the AdminCP, but I find it useful for linking to PSIStats, Moderator Statistics and my VPS Server's Control Panel.
Screenshot attached.
Please Click https://vborg.vbsupport.ru/ (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=106658) if you are using this. Thanks!