thank you very much.
--------------- Added [DATE]1207102264[/DATE] at [TIME]1207102264[/TIME] ---------------
need a bit of help please.. keep getting the error:
Parse error: syntax error, unexpected '<' in /home/slothdog/domains/weedtracker.com/public_html/forums/profile.php(842) : eval()'d code on line 9
I guess i cant put conditionals into a plugin? I want to check the usergroup and if they are in certain usergroups move them to a secondary group and if they are in other groups move them to a primary usergroup if they answer 'yes' to a custom profile field. and if they answer 'no' to move them back to a different primary usergroup.
i hacked this from the primary and secondary usergoup based on profile field plugin. i want to combine the two into a single plugin.
this is what ive come up with (im not much of a coder these days):
Code:
// Get the value for field 9
$user = $db->query_first("
SELECT field9
FROM " . TABLE_PREFIX . "userfield
WHERE userid = " . $vbulletin->userinfo['userid'] . "
");
// YES ANWSERS
<if condition="is_member_of($bbuserinfo, 23,33,43)">
if ($user['field9'] == 'yes')
{
$membergroupids = $userdata->fetch_field('membergroupids');
if ($membergroupids)
{
$membergroupids = $membergroupids . ", 41";
}
else
{
$membergroupids = 41;
}
$userdata->set('membergroupids', $membergroupids);
}
</if>
<if condition="is_member_of($bbuserinfo, 2,24)">
if ($user['field9'] == 'yes')
{
$userdata->set('usergroupid', 41);
}
</if>
// NO ANWSERS
if ($user['field9'] == 'no')
{
$userdata->set('usergroupid', 24);
}