Make a new template? Like imagewtf_noframes and then check if they have frames or something?
I think you may be going about it the wrong way. Heres the way I would have done it.
PHP Code:
// START OF MAIN SCRIPT
$db->query(// Query for settings
if($uploadactive == true) // Or however you plan on checking it
{
if(...) // Check if in correct usergroup
{
eval('$innertemp = "'. fetch_template('imagewtf_frame') .'";');
}
}
// NOW WE CALL THE SHELL TEMPLATE
eval('print_output("'. fetch_template('imagewtf_shell') .'");');
Example template
imagewtf_frame:
Code:
We have our content here
Example template
imagewtf_shell:
Code:
<html>
<head....
...body>
We have our standard content here, which is displayed regardless of usergroup or if modification is active
$innerhtml
</body>
</html>
Notice the
$innerhtml variable, now if the modification is not active or the user is not in the required usergroup then
$innerhtml will be empty and therefore will not appear. I don't see why you need to use frames unless you are trying to achieve something else.
Also some general pointers.
- You can store settings in vBulletin Options (Enter debug mode then navigate to your options). If you add them to vBulletin options then you can access by using $vbulletin->options['....'] instead of performing a number of queries just to obtain settings for your modification.
- If you are querying for just a single piece of data from MySQL use the $db->query_first(...) database function, it will reduce the lines of code you need significantly. For example:
PHP Code:
$settings = $db->query_first("SELECT * FROM imagewtf_settings WHERE settingname='allowedusergroups' LIMIT 1");
// No need for this line: $settings = $db->query_read($query);
// No need for this line: $setting = $db->fetch_array($settings);
$set = $setting['switch2'];
- Use the is_member_of($userinfo, $usergroups); function as this checks both primary and secondary usergroups.
PHP Code:
// $allowedug = explode(",", $set);
// if(in_array ( $usergroupid, $allowedug ))
// ------------- NOW BECOMES ---------------
$allowedug = exmplode(',', $set);
if(is_member_of($vbulletin->userinfo, $allowedug))
{
//...