The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Admin and Mod Toolbar in Navbar Details »» | |||||||||||||||||||||||||||
Description
(Please Note that Version 2.5 has been released!) (Arabic Translation added! (Credits to Daniel_HBK!) This is a template modification that will add an "Admin Toolbar" to the navbar if you are an administrator, and a "Mod Toolbar" to the navbar if you are a Mod/Super Mod. Other usergroups Can Not! see these toolbars! New! Administrators/Moderators only see links to tools they have permission to use! Each Toolbar is a dropdown menu with shortcuts to the Admin/Mod panel, and frequently used tools within the Admin/Mod Panel. By Default, these are the shortcut in each Toolbar: Administrators
Moderators
*Links can be customized [easily]! Please check the download for instructions. Screenshots: *Please note: In the screenshots above, the Administrator sees both the Admin and Moderator Panel. This glitch was fixed in v2.5, but I am unable to update the screenshots until I reopen my forum. Tested and working perfetly in vBulletin 3.8.1, althought it should work in all versions of vBulletin newer than 3.5. Please Click "Installed" if you have used this hack! For Installation Instructions, Please Download and see the .txt I welcome comments and feedback! Download Now
Supporters / CoAuthors Show Your Support
|
Comments |
#42
|
|||
|
|||
Quote:
find in the navbar template: Code:
<!-- ADMIN TOOLBAR --> <if condition="$bbuserinfo[usergroupid] == 6"> <td id="3" class="vbmenu_control"><a href="#4">Admin Toolbar</a> <script type="text/javascript"> vbmenu_register("3"); </script></td> </if> Code:
<!-- ADMIN TOOLBAR --> <if condition="is_member_of($bbuserinfo, 6, 13"> <td id="3" class="vbmenu_control"><a href="#4">Admin Toolbar</a> <script type="text/javascript"> vbmenu_register("3"); </script></td> </if> Code:
<!-- ADMIN TOOLBAR --> <if condition="$bbuserinfo[usergroupid] == 6"> <div class="vbmenu_popup" id="3_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">Admin Toolbar</td> Code:
<!-- ADMIN TOOLBAR --> <if condition="is_member_of($bbuserinfo, 6, 13"> <div class="vbmenu_popup" id="3_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">Admin Toolbar</td> thanks for the mod, nNj. I've translated the Install Guide to german. Code:
| Admin and Mod Toolbars V2.5 | -------------------------------- Installing (Upgrade Instructions below) 1. Im NAVBAR template folgendes suchen : -------------------------------- <if condition="$show['member']"> <td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')">$vbphrase[log_out]</a></td> </if> ------------------------------ folgendes drunter einf?gen: ------------------------------ <!-- ADMIN TOOLBAR --> <if condition="$bbuserinfo[usergroupid] == 6"> <td id="3" class="vbmenu_control"><a href="#4">Admin Toolbar</a> <script type="text/javascript"> vbmenu_register("3"); </script></td> </if> <!-- MOD TOOLBAR --> <if condition="in_array($bbuserinfo[usergroupid], array(5,7))"> <td id="4" class="vbmenu_control"><a href="#4">Mod Toolbar</a> <script type="text/javascript"> vbmenu_register("4"); </script></td> </if> ------------------------------ 2. Danach im NAVBAR template folgendes suchen : ------------------------------ <if condition="$show['popups']"> <!-- NAVBAR POPUP MENUS --> ------------------------------ folgendes drunter einf?gen: ------------------------------ <!-- ADMIN TOOLBAR --> <if condition="$bbuserinfo[usergroupid] == 6"> <div class="vbmenu_popup" id="3_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">Admin Toolbar</td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/index.php">Admin Panel Startseite</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/options.php?null=0">vBulletin Optionen</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/template.php?do=modify">Styles verwalten</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/usergroup.php?do=modify">Benutzergruppen verwalten</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/forum.php?do=modify">Foren verwalten</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/user.php?do=find">Alle Benutzer anzeigen</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/user.php?do=modify">Benutzer suchen</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$modcpdir/banning.php?do=banuser">Benutzer sperren</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/options.php?do=options&dogroup=banning">Benutzer ?ber IP sperren</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$admincpdir/announcement.php?do=add">Ank?ndigung hinzuf?gen</a></td> </tr> </table> </div> </if> <!-- MOD TOOLBAR --> <if condition="in_array($bbuserinfo[usergroupid], array(5,7))"> <div class="vbmenu_popup" id="4_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">Mod Toolbar</td> </tr> <tr> <td class="vbmenu_option"><a href="$modcpdir/index.php">Mod Panel Startseite</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$modcpdir/user.php?do=find">Benutzer suchen</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$modcpdir/user.php?do=doips">IP suchen</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$modcpdir/banning.php?do=banuser">Benutzer sperren</a></td> </tr> <tr> <td class="vbmenu_option"><a href="$modcpdir/announcement.php?do=add">Ank?ndigung hinzuf?gen</a></td> </tr> </table> </div> </if> |
#43
|
|||
|
|||
Thanks for the Translation Slaxi! I'll upload it and add your name to the co authors ^^.
|
#44
|
|||
|
|||
The one suggestion I would like to make is make a link to where if you click on "ban user" for instance, there will be a link to click on to go back to the forums.
|
#45
|
||||
|
||||
Flawless! *Installed* Thanks..
|
#46
|
||||
|
||||
have a prob with this one where to put it?
not seeing it PHP Code:
|
#47
|
|||
|
|||
Installed on 3.8.3
Nice feature for the Mods to access these tools faster. |
#48
|
|||
|
|||
I've added this to the quick links menue as additional options below the miscellaneous options. Works fine, thank you.
|
#49
|
|||
|
|||
great mod, thanks
|
#50
|
||||
|
||||
Installed, thank you. Looking forward for version 3.
|
#51
|
|||
|
|||
cool, will try it
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|