Quote:
Originally Posted by Kevlar
This is mostly for moderators because I didn't give them permission to the mod control panel (too much permissions).
|
Hmm ... if you set permissions correctly your mods can't do anything (except viewing load avg and searchign in mysql/php manual).
Furthermore, this is mainly a template mod - I've added such a "Quick Ban"-Button in the user profile (Template MEMBERINFO).
HTML Code:
<if condition="can_moderate(0, 'canbanusers')">
<br />
<if condition="$usergroupcache["$userinfo[usergroupid]"][genericoptions] & ISBANNEDGROUP">
<div style="color: red; font-weight: bold; text-align: center; font-size: 18pt">This User is banned!</div>
<else />
<div style="text-align: center">
<form method="get" action="modcp/banning.php" />
<input type="hidden" name="do" value="dobanuser" />
<input type="hidden" name="period" value="PERMANENT" />
<input type="hidden" name="usergroupid" value="8" />
<input type="hidden" name="username" value="$userinfo[username]" />
<input type="submit" value="Ban User" />
</form>
</div>
</if>
</if>