View Full Version : <if> statements, check secondary usergroups?
I need something displayed for all users in usergroup x, and everyone that has x as a secondary usergroup.
How would I check in an if statement if they have the usergroup as a secondary?
------
amykhar
06-16-2005, 01:39 AM
You use the function is_member_of. Like this:
if(is_member_of($bbuserinfo,x) {
do this
}
Awesome, Thanks for the quick response.
Quarterbore
05-25-2006, 05:55 PM
I need to use this in the context that I have a secondary group that will be allowed to edit data in part of my website...
My usergroup that I am using to give access is group 35.
Following is the code I tried to use:
if(is_member_of($bbuserinfo,35)) {
echo " Database Team";
}
When I put my test account on primary = Registered and Secondary = 35 I am not getting the "Database Team" being output....
My script was built outside of vBulletin and I am in the process of integrating it now....
Is it possible this has changed for vb3.5?
Paul M
05-25-2006, 06:14 PM
It's changed, in 3.5 use ;
if(is_member_of($vbulletin->userinfo,35)) {
echo " Database Team";
}
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.