vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   If Profile Field Then Do Action (https://vborg.vbsupport.ru/showthread.php?t=204157)

TheInsaneManiac 02-04-2009 02:59 AM

If Profile Field Then Do Action
 
Ok, so basically what I got here is a dropdown profile field. If a member selects something specific from this profile field I want something to be displayed.

So if the profile field says "Red" I want certain things to be in red.

So like:
<if condition="$bbuserinfo[field1]" == red>
<font color="red">
$content
</if>
</font>

Lynne 02-04-2009 03:13 AM

The variable to use depends on what page/template you are trying to use it in and who the variable relates to - the person viewing the page or the page/post of another user?

TheInsaneManiac 02-04-2009 03:22 AM

Quote:

Originally Posted by Lynne (Post 1733767)
The variable to use depends on what page/template you are trying to use it in and who the variable relates to - the person viewing the page or the page/post of another user?

I want it so that any user who selects red via their usercp will see a certain page in red.

Lynne 02-04-2009 03:50 AM

Then $bbuserinfo is probably the correct variable to use.

TheInsaneManiac 02-04-2009 04:13 AM

So I have it set up correctly? Should red be in quotations?

Example:
<if condition="$bbuserinfo[field1]" == "red">

Lynne 02-04-2009 04:17 AM

single quotes.

HTML Code:

<if condition="$bbuserinfo[field1] == 'red'">

Dismounted 02-04-2009 04:48 AM

Always better to quote array keys in conditionals (and you can and should use the identical operator, as it is faster).
Code:

<if condition="$bbuserinfo['field1'] === 'red'">

TheInsaneManiac 02-04-2009 05:13 AM

Sweet thanks!

Quote:

Originally Posted by Dismounted (Post 1733815)
Always better to quote array keys in conditionals (and you can and should use the identical operator, as it is faster).
Code:

<if condition="$bbuserinfo['field1'] === 'red'">

Huh?

Dismounted 02-04-2009 05:19 AM

I was just posting optimisations to the original code posted.

TheInsaneManiac 02-04-2009 11:01 AM

Quote:

Originally Posted by Dismounted (Post 1733843)
I was just posting optimisations to the original code posted.

I see, well thanks to both of you. :D


All times are GMT. The time now is 04:45 AM.

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.01037 seconds
  • Memory Usage 1,729KB
  • 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
  • (2)bbcode_code_printable
  • (1)bbcode_html_printable
  • (3)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