Method |
Description |
|
__construct ( ) |
|
|
__get ( string $key ) |
Tries to retrieve a variable from the internal array engine_vars. |
|
__isset ( string $key ) |
Detects if a variable is assigned to the template engine for use in
constructing the template's output. |
|
__set ( string $key, mixed $value ) |
Assigns a variable to the template engine for use in
constructing the template's output. |
|
__unset ( string $key ) |
Unassigns a variable to the template engine. |
|
add_template ( string $name, string $file, boolean $replace = false ) |
Add a template to the list of available templates |
|
append ( string $key, mixed $value = '' ) |
Appends to an existing variable more values |
|
assign ( string $key, mixed $value = '' ) |
Assigns a variable to the template engine for use in
constructing the template's output. |
|
assigned ( string $key ) |
Detects if a variable is assigned to the template engine for use in
constructing the template's output. |
|
clear ( ) |
Clear all of the assigned values |
|
display ( string $template ) |
A function which outputs the result of a transposed
template to the output stream |
|
fetch ( string $template ) |
A function which returns the content of the transposed
template as a string |
|
queue_dirs ( array $dirs ) |
Queue directories to be scanned for template files |
|
template_exists ( string $template ) |
Returns the existance of the specified template name |
|