View Full Version : Perform simple calculations inside templates!
Lea Verou
08-22-2008, 10:00 PM
I was quite excited to find this out!
Have you ever wanted to make a simple calculation for a template, like an addition or subtraction? Personally, I needed this many times and most of them I created a plugin for that. Today I discovered that that is unecessary. You can use the conditional to make simple calculations. For instance, lets suppose you want to display somewhere the userid of the current user, incremented by one. You could do this:
<if condition="$nextid = $bbuserinfo['userid']+1"></if>
The next userid is $nextid.
This will display as (given that the userid of the user viewing is 1):
The next userid is 2.
Of course the userid example is very simple, just to make you understand what I'm talking about.
Let me know if it helped you! :)
Antivirus
08-30-2008, 12:19 AM
interesting, thanks!
Kaelon
09-24-2008, 12:39 AM
Very cool! Thanks, Michelle!
Chunky Monkey
10-21-2008, 10:38 PM
Is there a way we can use this to generate a random number and then test against it so that something happens only 1/X times?
Lea Verou
10-21-2008, 10:41 PM
Nope. The functions for random number generation aren't allowed in templates, so you have to use a plugin.
Chunky Monkey
10-21-2008, 11:33 PM
Thank you, Michelle.
gmert
05-26-2009, 06:49 AM
Could I change the numbers by myself ????????
for examble, the number 41, to put the number 88 or number 14 ????
https://vborg.vbsupport.ru/external/2009/05/43.jpg
ragtek
05-26-2009, 07:09 AM
Nope. The functions for random number generation aren't allowed in templates, so you have to use a plugin.
Mmaybe you could put it into the $safe_functions variable and use it this way;)
gmert
05-26-2009, 07:18 AM
How could i do it ??????
Anyone know what kinds of simple calculations can be done using this method?
Lea Verou
07-14-2009, 11:01 PM
Anyone know what kinds of simple calculations can be done using this method?
Anything that doesn't involve functions or the functions involved are allowed within templates.
xlguy
08-13-2009, 02:18 PM
Thanks for sharing.
Could you do a multiplication? So
$newfigure = $oldfigure + $oldfigure * 0.15
Any idea?
Lea Verou
08-13-2009, 02:27 PM
Yes you can.
xlguy
08-13-2009, 02:33 PM
Thanks, sorry I should have been a bit clearer, what would the syntax be? :)
Lea Verou
08-13-2009, 04:58 PM
<if condition="$newfigure = $oldfigure + $oldfigure * 0.15"></if>And after that, use $newfigure normally in your template
TimberFloorAu
09-03-2009, 04:58 AM
What would be the format for:
Displaying the cumulative count of all a users posts ?
so if they have 5 threads.
thread a has 23 views
thread b has 34 views
thread 3 has 26 views
so on and so on...
and create code to echo the total of those views a+b+c etc
Lea Verou
09-03-2009, 06:04 AM
If I understood what you're trying to do correctly, that's not possible in the templates alone.
TimberFloorAu
09-03-2009, 09:50 PM
Ok thanks, back to the drawing board.
Dax IX
10-21-2009, 05:36 PM
This is a great tip! I've already found a couple of uses for it. :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.