Log in

View Full Version : php if user group


Flyte
07-06-2010, 07:14 PM
i am trying to write a php statement but do not know what variable to call
I only want the photos to display if they are in the photographer user group.

this is what I want, but dont know what to put in the parenthesis

if (usergroup photograhper) {
do this..
}
else {
do nothing
}

I don't want the users to be in the usergroup photographer, I only want photographers photos to be displaying in my image viewer.

Thanks!

James Birkett
07-06-2010, 07:18 PM
It really depends on where you're displaying it...

if($user['usergroupid'] == X){

}

if(is_member_of($bbuserinfo, X, Y, Z)){

}

if(is_member_of($vbulletin->userinfo, X, Y, Z)){

}

Where do you want to display it?

Flyte
07-06-2010, 07:46 PM
it will be on the forum page for now, maybe in the future it will be on CMS page. But for now, just the forum page right above the forums.

--------------- Added 1278457437 at 1278457437 ---------------

based off the code that is already written for the current mod, they use similar code to:
if(is_member_of($vbulletin->userinfo, X, Y, Z)){

}
How would I incorporate the photographer user group (id:11) into that if statement?