$flexy->compile() | $flexy->bufferedOutputObject() |
HTML_Template_Flexy | |
PEAR Manual | |
void $flexy->
outputObject (
object $controllerObject
, array $elements
)
This makes the values of the supplied object (and optionally loads the HTML_Template_Flexy_Elements) available to the template when it is run.
object $controllerObject - The object you want to use with the template, the values of the object will relate to the $controllerObject->tag will map to {tag} on the template
array $elements - This is an associative array of form, or dynamic elements names (or id's) which will be merged with the one defined in the template.
This function can not be called statically.
PHP code initiating the template, and outputing it
|
The Template with some tags
<B>{tag}</B> <B>{tag:h}</B> <INPUT name="test"> |
Resulting output
<B>>> hello world</B> <B>>> hello world</B> <INPUT name="test" value="hello input"> |
$flexy->compile() | $flexy->bufferedOutputObject() |
HTML_Template_Flexy | |
PEAR Manual | |