#1190 - The power of tempcode

Identifier #1190
Issue type Feature request or suggestion
Title The power of tempcode
Status Completed
Handling member PDStig
Addon General / Uncategorised
Description Worked examples...

This will work within Comcode and Tempcode:

[semihtml]
{+START,IF,{$LT,{$RAND},8000}}

This shows 1/4 of the time. How does it work? RAND picks a random number between 0 and 32000, so the number will be less than 8000 1/4 of the time.


{+END}

<p style="color: {$SET_RAND,red,green,blue,#EE1167};">
I think you are a {$SET_RAND,lovely,beautiful,groovy} person.

We randomly selected a word, and randomly picked a text colour.




I want to let people <a href="{$OBFUSCATE,mailto:[email protected]}">e-mail me</a>, but I don't want spam so I will confuse spam-bots.




{$TRUNCATE_LEFT,Sometimes you get data that is too long for your layout.,10,1,1}



{+START,IF,{$MATCH_KEY_MATCH,site:downloads:browse:3}}


Maybe I want to add this message to DOWNLOAD_CATEGORY_SCREEN.tpl but to only display if viewing download category 3.

(the page-link means "'site' zone, 'downloads' page, 'browse' screen type, '3' ID)")


{+END}

{+START,IF,{$EQ,{$_GET,id},3}}


Or we could do it this way, given DOWNLOAD_CATEGORY_SCREEN.tpl is always under site:downloads:browse anyway, and the 'id' parameter is the only thing altering.


{+END}

{+START,IF,{$BROWSER_MATCHES,ie}}


You're an Internet Explorer user.


{+END}

{+START,IF,{$IS_ADMIN}}


Only admin's see this.


{+END}

{+START,IF,{$IS_IN_GROUP,1,3-5}}


Only members in groups 1/3/4/5 see this.


{+END}

<img alt="Your avatar made into a really tiny thumbnail" title="Your avatar made into a really tiny thumbnail" src="{$THUMBNAIL*,{$AVATAR},20x20}" />
[/semihtml]

This will work within Tempcode only (i.e. a template):

<div>
Zebra-striping by setting up a named cycle (we use the loop to simulate an arbitrary repeating situation to use the cycle within):
{+START,LOOP,A\,B\,C\,D\,E\,F\,G\,H\,I}
<div style="background: {$CYCLE,bgcol,#EEE,#AAA}">
{_loop_var}
</div>
{+END}
</div>
Steps to reproduce

Funded? No
The system will post a comment when this issue is modified (e.g., status changes). To be notified of this, click "Enable comment notifications".

Rating

Unrated