__construct($root, $useIncludePath, $group); trigger_error('Not implemented!', E_USER_WARNING); } /** * Constructor. (PHP5) * * @param string $root Root directory where template files are. * @param bool $useIncludePath If it's true, it looks for template files in * PHP's include_path. * @param string $group Group of templates to use (a subdirectory in root). * * @access public * @return void */ function __construct($root = '.', $useIncludePath = false, $group = '') { trigger_error('Not implemented!', E_USER_WARNING); } /** * Returns a parsed template. * * @param string $name Name of template to parse. * @param mixed $vars Variables to replace in the template. * @param string $val If $vars is a string, the value to replace * for $vars. * @param mixed $group Group to use to parse this template. * null to use the current group. * * @access public * @return mixed */ function parse($name, $vars = '', $val = '', $group = null) { trigger_error('Not implemented!', E_USER_WARNING); } /** * Returns the template file name based on the blockname * * @param string $block BlockName. * * @access public * @return mixed */ function getFileName($block) { trigger_error('Not implemented!', E_USER_WARNING); } /** * Returns the template file content. * * @param string $file Filename. * * @access public * @return mixed */ function getFileContent($filename) { trigger_error('Not implemented!', E_USER_WARNING); } } ?>