A template class is any class with render() and set() methods. Skeleton provides several simple template classes, plus Adapters to popular template systems. You can wrap any template code you like with a render() and set() method, and use it as a renderer in the Skeleton framework.
This template class will include a PHP template and return the output as a string.
This template class will load a HTML template file. Tags in braces in the format {tagname} will be replace with set() values using str_replace(). The result is returned as a string by the render() method.
The smarty template class extends the Smarty class. It only adds the set and render methods, and grabs the file name via the constructor before delegating to the Smarty constructor.
Describe A_Template_Xml
Describe A_Template_Xslt