MyBB Community Forums

Full Version: Can You make a moderator limitation plugin?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The plugin can restrict a moderator so that he can only ban a user in mod-cp (i.e. Only function he can in mod cp is to ban member). All other functions can be disable for him, and he can only ban 3 users in a day. And ban limit will be only for one day (can't be altered by that moderator). And that moderator can't ban any admin, team member


Will be appreciated If any one can do it with in 2 days
(2011-11-05, 05:04 AM)Yaldaram Wrote: [ -> ]Try this: http://mods.mybb.com/view/moderator-permissions

Thanks that helped the only thing is, How to hide awaiting moderation, 5 Latest Moderator Actions

from the display page of modcp.php
You could do this with Template Conditionals plugin. After installing that plugin, just wrap the "5 Latest Moderator Actions" code from the template with;
<if in_array($mybb->user['usergroup'],array(3,4)) then>
// 5 Latest Moderator Actions code goes here...
</if>

This'll hide the code from all mods except usergroup 3 and 4.
Thanks. worked