The Arcive of vBulletin Modifications Site. |
|
|
#1
|
||||
|
||||
|
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? ------ |
|
#2
|
||||
|
||||
|
You use the function is_member_of. Like this:
Code:
if(is_member_of($bbuserinfo,x) {
do this
}
|
|
#3
|
||||
|
||||
|
Awesome, Thanks for the quick response.
|
|
#4
|
|||
|
|||
|
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: Code:
if(is_member_of($bbuserinfo,35)) {
echo " Database Team";
}
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? |
|
#5
|
||||
|
||||
|
It's changed, in 3.5 use ;
Code:
if(is_member_of($vbulletin->userinfo,35)) {
echo " Database Team";
}
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|