return the current encoding
static string
getEncoding
()
concat a value in with a value of an existing template variable
void
append
(string|array $name, [mixed $value = null])
-
string|array
$name: the variable name, or an associative array 'name'=>'value'
-
mixed
$value: the value (or null if $name is an array)
append a zone content to a template variable
void
appendZone
(string $name, string $zoneName, [array $params = array()])
-
string
$name: the variable name
-
string
$zoneName: a zone selector
-
array
$params: parameters for the zone
assign a value in a template variable
void
assign
(string|array $name, [mixed $value = null])
-
string|array
$name: the variable name, or an associative array 'name'=>'value'
-
mixed
$value: the value (or null if $name is an array)
assign a value in a template variable, only if the template variable doesn't exist
void
assignIfNone
(string|array $name, [mixed $value = null])
-
string|array
$name: the variable name, or an associative array 'name'=>'value'
-
mixed
$value: the value (or null if $name is an array)
assign a zone content to a template variable
void
assignZone
(string $name, string $zoneName, [array $params = array()])
-
string
$name: the variable name
-
string
$zoneName: a zone selector
-
array
$params: parameters for the zone
assign a zone content to a template variable only if this variable doesn't exist
void
assignZoneIfNone
(string $name, string $zoneName, [array $params = array()])
-
string
$name: the variable name
-
string
$zoneName: a zone selector
-
array
$params: parameters for the zone
display the generated content from the given template
void
display
(string $tpl, [string $outputtype = ''], [boolean $trusted = true])
-
string
$tpl: template selector
-
string
$outputtype: the type of output (html, text etc..)
-
boolean
$trusted: says if the template file is trusted or not
return the generated content from the given template
string
fetch
(string $tpl, [string $outputtype = ''], [boolean $trusted = true], [boolean $callMeta = true])
-
string
$tpl: template selector
-
string
$outputtype: the type of output (html, text etc..)
-
boolean
$trusted: says if the template file is trusted or not
-
boolean
$callMeta: false if meta should not be called
return the value of a template variable
mixed
get
(string $name)
-
string
$name: the variable template name
include the compiled template file and call one of the generated function
void
getTemplate
(string $tpl, string $fctname, [string $outputtype = ''], [boolean $trusted = true])
-
string
$tpl: template selector
-
string
$fctname: the internal function name (meta or content)
-
string
$outputtype: the type of output (html, text etc..)
-
boolean
$trusted: says if the template file is trusted or not
Return all template variables
array
getTemplateVars
()
says if a template variable exists
boolean
isAssigned
(string $name)
-
string
$name: the variable template name
process all meta instruction of a template
void
meta
(string $tpl, [string $outputtype = ''], [boolean $trusted = true])
-
string
$tpl: template selector
-
string
$outputtype: the type of output (html, text etc..)
-
boolean
$trusted: says if the template file is trusted or not
deprecated function: optimized version of meta() + fetch().
Instead use fetch with true as $callMeta parameter.
string
metaFetch
(string $tpl, [string $outputtype = ''], [boolean $trusted = true])
-
string
$tpl: template selector
-
string
$outputtype: the type of output (html, text etc..)
-
boolean
$trusted: says if the template file is trusted or not