Source for file i_tple.class.php
Documentation is available at i_tple.class.php
// *** Tangra (Application Framework and Tools for PHP)
* Contains interface I_TPLE
* When implemented shows that the class is Template Engine
* @param string $tpl Template file
* Fetches and returns the template
* @param unknown_type $tpl Template file
public function fetch($tpl);
* Assignes value to variable in tple dataspace
* @param string $tpl_var Variable name
* @param unknown_type $value - Variable value
public function assign($tpl_var, $value = null);
* Sets directory where TPL files reside
* Gets directory where TPL files reside
|