PDA

View Full Version : What is the variable for secondary usergroups?


djnoz
11-04-2003, 02:26 PM
I'm trying to write a template hack that shows icons in the postbit depending on a user's additional usergroups.
Using echo $bbuserinfo[usergroupid]; it's obvious that this only refers to primary usergroups.

Does anyone know how to refer to secondary usergroups?

I'm using vb3

Zachery
11-04-2003, 04:52 PM
i think it counts the extra user groups so if you were to put if condition="$bbuserinfo[usergroupid] = X" if there in it they should still be in that usergroup so it should still work

djnoz
11-05-2003, 02:23 PM
I'm afraid it still doesn't work. I'm testing it by placing echo text at the end of global.php, as part of the hack involves modifications to the php code.


echo $bbuserinfo[usergroupid];

if($bbuserinfo[usergroupid] == 15)
{
echo "This user also belongs to usergroup 15";
}


For a standard user who's been added to additional usergroup 15, this code just returns "2" at the top of each page (the id for registered members)

Please help! Thanks :)

assassingod
11-05-2003, 02:27 PM
I'm afraid it still doesn't work. I'm testing it by placing echo text at the end of global.php, as part of the hack involves modifications to the php code.


echo $bbuserinfo[usergroupid];

if($bbuserinfo[usergroupid] == 15)
{
echo "This user also belongs to usergroup 15";
}


For a standard user who's been added to additional usergroup 15, this code just returns "2" at the top of each page (the id for registered members)

Please help! Thanks :)First, vB3 hacking isn't allowed. Second, you should place it in the phpinclude_start template if you want to globalized.

Now, use:

if($bbuserinfo[usergroupid] == 15)
{
echo("You are part of this usergroup, 15");
}