This is the code I have.
PHP Code:
$usergroupid = $vbulletin->userinfo['usergroupid'];
$query = "SELECT * FROM imagewtf_settings WHERE settingname='uploaderactive'";
$settings = $db->query_read($query);
$setting = $db->fetch_array($settings);
$set = $setting['switch1'];
if($set == 1)
{
// Permissions Check
$usergroupid = $vbulletin->userinfo['usergroupid'];
$query = "SELECT * FROM imagewtf_settings WHERE settingname='allowedusergroups'";
$settings = $db->query_read($query);
$setting = $db->fetch_array($settings);
$set = $setting['switch2'];
$allowedug = explode(",", $set);
if(in_array ( $usergroupid, $allowedug ))
{
eval('print_output("' . fetch_template('imagewtf_frame') . '");');
}
// End Permissions Check
}
else{
print_no_permission();
}
I need to replace
PHP Code:
else{
print_no_permission();
}
with the code that will get rid of the frames if the mod is not enabled or if it is and the member is just not in the required group.