PDA

View Full Version : If Statement Help


Itworx4me
02-25-2004, 05:09 PM
Was wondering if someone would help me out with an if statement. Here is what I need:

<if bbuser = membership usergroup then show $photo></if>

Thanks,
Itworx4me

Zachery
02-25-2004, 05:15 PM
Was wondering if someone would help me out with an if statement. Here is what I need:

<if bbuser = membership usergroup then show $photo></if>


Thanks,
Itworx4me
<if condition="IS_MEMBER_OF($var, groupid)">$photo</if>

Now. where are we trying to do this? in the postbit per user, or as a global?

$post for the postbit
$bbuserinfo for most other places.

Itworx4me
02-25-2004, 05:25 PM
<if condition="IS_MEMBER_OF($var, groupid)">$photo</if>

Thanks for responding Zachery. I am wanting to use this statement on the forum home page. Could you tell me what this part is supposed to be if my usergroup is #8? ($var, groupid).


Thanks,
Itworx4me

Zachery
02-25-2004, 05:26 PM
Thanks for responding Zachery. I am wanting to use this statement on the forum home page. Could you tell me what this part is supposed to be if my usergroup is #8? ($var, groupid).


Thanks,
Itworx4me
$var is to be replaced with $bbuserinfo in your case and groupid to be replace with 8 so

($bbuserinfo, 8)

Itworx4me
02-25-2004, 05:33 PM
One last question. If I wanted to add more usergroups to see this string. Would it look like this ($bbuserinfo, 8,9,10) ????

Zachery
02-25-2004, 05:40 PM
no,

<if condition="in_array(IS_MEMBER_OF($bbuserinfo, array(X,Y,Z))">$photo</if>

Itworx4me
02-25-2004, 05:51 PM
Thanks for all your help Zachery

Itworx4me

Itworx4me
02-25-2004, 05:57 PM
Hey Zach I get this error when putting this statement in the forumhome template

The following error occurred when attempting to evaluate this template:

Parse error: parse error in /home/****/public_html/forums/includes/adminfunctions_template.php(3028) : eval()'d code on line 252

This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.

You have any ideas????

Thanks,
Itworx4me