| HTML |
RESULT |
<h3>From an pad tag</h3>
{pad:foo}
| From an pad tag
Foo tag from pad |
<h3>From an application tag </h3>
{app:foo}
| From an application tag
Foo tag from app |
<h3>From the {content} tag </h3>
{content:foo}
| From the {content} tag
This is from content |
<h3>From a PHP function !</h3>
{php:foo}
| From a PHP function !
This is a function |
<h3>From an own PAD function </h3>
{function:foo}
| From an own PAD function
From an own function |
<h3>From an defined bool</h3>
{bool:foo} Bool 'foo' is true @else@ Bool 'foo' is false {/bool:foo}
| From an defined bool
Bool 'foo' is true |
<h3>From a PHP array</h3>
{array:foo} {$foo} <br> {/array:foo}
| From a PHP array
This is a PHP array - 1
This is a PHP array - 2
This is a PHP array - 3
|
<h3>A defined constant</h3>
{constant:foo} {$foo} <br> {/constant:foo}
| A defined constant
This is a constant - 1
This is a constant - 2
This is a constant - 3
|
<h3>From the {data} tag</h3>
{data:foo} {$foo} <br> {/data:foo}
| From the {data} tag
This is a json array - 1
This is a json array - 2
This is a json array - 3
|
<h3>From the local _data directory</h3>
{local:foo} {$foo} <br> {/local:foo}
| From the local _data directory
From the _data directory - 1
From the _data directory - 2
From the _data directory - 3
|
<h3>From the local _scripts directory</h3>
{script:foo}
| From the local _scripts directory
Hello from foo.py |