vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Counters within a template? (https://vborg.vbsupport.ru/showthread.php?t=191491)

Trana 09-21-2008 02:39 PM

Counters within a template?
 
Is there any way to put a global variable into a template (like postbit or threadbit) so that I can modify the output with conditionals once criteria is met?

For example, a simple counter count++ placed in a template so that it increases every time the template is loaded on a page, and if the count gets to a certain number I can make a change to the output with an <if>?

I don't know if this can be done in a template without using a plugin or file change.

Thanks!

Dismounted 09-22-2008 05:35 AM

Code:

<if condition="++$count == 10">We've reached 10!</if>

Trana 09-23-2008 11:30 PM

Do I need to initialize it or anything?

Dismounted 09-24-2008 04:46 AM

No. As long as $count has not been used - it will be empty, or "zero". If you want to initialise it first, you can do this (bit messy though):
Code:

<if condition="!isset($count)"><if condition="$count = 0"></if></if><if condition="++$count == 10">We've reached 10!</if>

Trana 09-27-2008 01:53 AM

Can you tell me how to do an OR with that same construct? I can't seem to get it to work.

Thanks!

Dismounted 09-27-2008 04:42 AM

Code:

<if condition="$condition1 == true OR $condition2 == true">Either condition 1 or 2 is true.</if>

Trana 09-27-2008 11:48 AM

Do I put the ++ on one of the variables or both of them?

Dismounted 09-27-2008 01:39 PM

What exactly do you want to do? "++" means increment.

Trana 09-28-2008 03:09 AM

I know, I just didn't understand if I am using multiple conditionals if I needed to put the ++ in both conditions.

I think I have it now, thanks!


All times are GMT. The time now is 01:45 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.01062 seconds
  • Memory Usage 1,717KB
  • 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
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete