Sure it is possible. I haven't tested this but it should work, I am going to implement this in my own forums as well.
Add this function to admin/functions.php:
PHP Code:
// ###################### Start getadminpermissions ################################
function isadmin($userid=-1) {
global $bbuserinfo, $DB_site;
if ($userid == -1) {
$userid = $bbuserinfo['userid'];
}
$admin=getpermissions(0,$userid);
if ($admin['cancontrolpanel']) {
return 1;
} else {
return 0;
}
}
I put it directly above the ismoderator() function.
Then in the same file look for:
PHP Code:
return bbcodeparse2($bbcode,$dohtml,$dobbimagecode,$dosmilies,$dobbcode);
Above this put:
PHP Code:
if (isadmin()) {
$dohtml = 1;
}
If you wanted to allow all moderators to post HTML you can do:
PHP Code:
if (ismoderator()) {
$dohtml = 1;
}