Quote:
Originally Posted by NuclioN
Is it possible to make a function for admins that threads closed by them are unable to open by supermods or mods?
|
threaddata_start
PHP Code:
$this->validfields['adminclose'] = array(TYPE_INT, REQ_NO);
threadmanage_openclose
PHP Code:
if (is_member_of($vbulletin->userinfo, 6)) {
$threadman->set('adminclose', ($threadman->fetch_field('adminclose') == 1 ? 0 : 1));
}
if ($threadinfo['adminclose'] && !(is_member_of($vbulletin->userinfo, 6))) {
$threadman->set('open', 0);
}
This is only theoretical code - It's 20 to 3 in the morning so it may be wrong
Chris