vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   <if> code help (https://vborg.vbsupport.ru/showthread.php?t=205618)

SVTCobraLTD 02-16-2009 11:42 PM

<if> code help
 
I am trying to get this code to work. The example below I know is incorrect but I need it fixed so I do not have tons of lines of IF commands.

Code:

<if condition="$post[usergroupid] == X, X, X, X and is_member_of($post, X, X, X, X )"><img src="images/misc/airforce.gif"></if>

TigerC10 02-17-2009 03:00 AM

So you want the airforce.gif image to display in the postbit if the poster is in a certain set of groups?

Try:
Code:

<if condition="is_member_of($post[usergroupid], X, X, X, X )"><img src="images/misc/airforce.gif"></if>

Dismounted 02-17-2009 04:43 AM

Fixed up the image tag, as well as the conditional:
Code:

<if condition="is_member_of($post, X, X, X, X)"><img src="images/misc/airforce.gif" border="0" alt="" /></if>

vbplusme 02-17-2009 05:26 AM

TigerC10, "So you want the airforce.gif image to display in the postbit if the poster is in a certain set of groups?" good guess at problem description." I wasn't sure what he was trying to do.

Quote:

Originally Posted by Dismounted (Post 1746535)
Fixed up the image tag, as well as the conditional:
Code:

<if condition="is_member_of($post, X, X, X, X)"><img src="images/misc/airforce.gif" border="0" alt="" /></if>

Nice, I suspected he was using the wrong conditional. This is clean and tidy.
Good work. thanks for the lesson.

SVTCobraLTD 02-17-2009 10:34 AM

What I need is the member is part of a main usergroup but ALSO the member is part of a secondary member group (air force) then that image will display for them.

bananalive 02-17-2009 06:26 PM

<if condition="$post[usergroupid] == B && is_member_of($post, X)"><img src="images/misc/airforce.gif"></if>

So the primary usergroup has to be 'B' and X must be secondary usergroup (air force).

SVTCobraLTD 02-17-2009 08:44 PM

Quote:

Originally Posted by bananalive (Post 1747144)
<if condition="$post[usergroupid] == B && is_member_of($post, X)"><img src="images/misc/airforce.gif"></if>

So the primary usergroup has to be 'B' and X must be secondary usergroup (air force).

But I am in need of it to work with multiple primary usergroups. So if the user is part of primary usergroup 2, 3, 4, 5, 6 or 7 and their secondary group is 8, then it will show the image.

Right now I have the code, like I posted in my first post, repeated over and over again changing the primary usergroup number each time. I figure there has to be a way to condense this code.

UncoderMom 02-17-2009 09:45 PM

Why not just use the Vb rank system? LOL

AdminCP>user ranks>add new user rank.

I never change my users primary user group from registered. If they are VIP or Mods, their status is secondary and the icon ranks for secondary show up just fine :) Including multiple group rank images. Even through vb promotions.

HTH

Lynne 02-18-2009 12:16 AM

Maybe....
HTML Code:

<if condition="in_array($post[usergroupid], array(2,3,4,5,6,7)) && is_member_of($post, 8)"><img src="images/misc/airforce.gif" border="0" alt="" /></if>
Or, as Lisa suggested, use Ranks.

Dismounted 02-18-2009 05:58 AM

You may want to choose to exclude some usergroups, instead of include (if there are less "other" usergroups).


All times are GMT. The time now is 03:25 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01156 seconds
  • Memory Usage 1,739KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)bbcode_html_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete