Triggers the parse operation in the internal rFastTemplate instance.
Syntax
|
Parameters
name
A string value that holds the name of the handle (an item of the HANDLE array of the internal rFastTemplate instance). The handle will reference the text of the specified template file with all its variables substituted by values during parsing.
tmpl
A mixed value that can hold either a string, or an array of strings, each holding a template name to search in the TEMPLATE array of the the internal rFastTemplate instance.
Returns
A boolean which is always true.
Remarks
The function invokes the parse() member function of the the internal rFastTemplate instance, passing in two parameters: the name of the destination handle (the name input parameter) and the name of the template file (or a collection) to parse (the tmpl input parameter).
Once this function returns, the HANDLE array of the the internal rFastTemplate instance gets a single handle in case the tmpl input parameter is a string, or as many handles as the number of items in the array of templates in case the tmpl input parameter is an array. Each handle references the text of one template file.
This function can be overridden.