Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2457

Extension Writers Discussion • Use TWIG to round?

$
0
0
Working on my forum goal ext.
Is there a way to use TWIG in the template to round a number?

Currently I have to do this:

Code:

'FORUM_POST_PERCENT'=> round(($total_posts * 100) / $this->config['forum_goals_posts']),'FORUM_POST_PERCENT_DEC'=> $this->format_number(($total_posts * 100) / $this->config['forum_goals_posts']),
The round is used to use the correct color of the bar, with this code:

Code:

<span class="{% if FORUM_POST_PERCENT < 34 %}red{% elseif FORUM_POST_PERCENT < 75 %}orange{% elseif FORUM_POST_PERCENT < 100 %}blue{% elseif FORUM_POST_PERCENT >= 100 %}green{% endif %}" style="width: {% if FORUM_POST_PERCENT > 100 %}100{% else %}{{ FORUM_POST_PERCENT }}{% endif %}%;"><span>{{ FORUM_POST_PERCENT }}%</span></span>
or do I just accept my current code? It does work.

Statistics: Posted by Stoker 4.0 — Fri Jun 27, 2025 1:29 pm



Viewing all articles
Browse latest Browse all 2457

Trending Articles