Version: 1.00, by rossco_2005
Developer Last Online: May 2013
Version: 3.5.0
Rating:
Released: 07-24-2005
Last Update: Never
Installs: 84
Uses Plugins Template Edits
No support by the author.
What does it do? Well, at the top of all forums will be a bar that tells your mods and admins how many:
Posts to moderate
Threads to moderate
Attachments to moderate
Events to moderate
Users to moderate
Reports that have not been fulfilled (only works for my report system mod)
The features include:
Links to each type of moderation CP or page
Can be placed anywhere in the forum, and modded easily (different per skin if you'd like)
Which usergroup can see quick mod panel can be changed easily
Option to have the bar turn red if there is something to attend to (a post to moderate, user to moderate, etc.)
Hope this is to your liking, and if anyone has any I am open to suggestions.
The installation requires 2 new plugins, 1 template change, 1 new template and a bit of configuration to choose which options you want.
[high]Plugins[/high]
Open your admincp -> Click Plugin System on the left nav panel -> Click 'Download/upload Plugins' -> Browse to QUICKMOD plugin.xml included in this package.
This adds 2 plugins. One is the quick mod php code + queries. The second is the caching of the quick mod template (not required but recommended).
[high]Templates[/high]
Add new template called navbar_moderation to all styles with this code:
Open template called navbar
At absolute bottom of template insert this code:
Code:
$moderate
and/or insert it anywhere in any other template if you'd like
[high]Configuration[/high]
To change what user groups can view the quick-mod bar replace
Code:
<if condition="$bbuserinfo[usergroupid]=='6' or $bbuserinfo[usergroupid]=='5'">
in the navbar_moderation template with whatever user group IDs you would like. You can find the usergroup IDs in the admincp by clicking 'usergroups' -> 'usergroup manager' then looking at what it says in the dropdown on the right of each user group [example: Edit Usergroup (ID:2)].
You may choose which options are shown on the quick moderation bar through the 'QUICKMOD::code' template
By default all but "reports unfulfilled" are shown on the quick mod bar, you can see that it is commented out using /* and */ (text between those is commented out, meaning it is not included in the code).
The Users, Posts, Threads, Attachments and Events can also be turned off this same way.
To have the quick mod bar show in a red color (or any other color of your choice) if there is something your mods must attend to, replace the following code in the QUICKMOD::code plugin:
Code:
//See if any of them are greater than 1
/*
if ($threads['count']>0 or $posts['count']>0 or $reports['count']>0 or $events['count']>0 or $attachments['count']>0 or $users['count']>0)
{
$alertmods = true;
}
*/
with:
Code:
//See if any of them are greater than 1
if ($threads['count']>0 or $posts['count']>0 or $reports['count']>0 or $events['count']>0 or $attachments['count']>0 or $users['count']>0)
{
$alertmods = true;
}
(it's been uncommented) and then add this css to all of your skins/styles: