* @package patTemplate * @subpackage Examples * @link http://www.php-tools.net * @see patTemplate_Function */ /** * Main examples prepend file, needed *only* for the examples framework! */ include_once 'patExampleGen/prepend.php'; // EXAMPLE START ------------------------------------------------------ /** * patErrorManager class */ require_once $neededFiles['patErrorManager']; /** * patTemplate */ require_once $neededFiles['patTemplate']; $tmpl = &new patTemplate( ); // tell patTemplate where to find custom functions $tmpl->addModuleDir( 'Function', dirname( __FILE__ ) . '/functions' ); $tmpl->setRoot( 'templates' ); // caching is switched on here - just to show that the funtion will be called anyways $tmpl->useTemplateCache( 'File', array( 'cacheFolder' => './tmplCache', 'lifetime' => 'auto', 'filemode' => 0644 ) ); // do some normal templating stuff here $tmpl->readTemplatesFromInput( 'example_function_param.tmpl' ); $tmpl->addVar( 'root', 'hero', 'batman' ); $tmpl->displayParsedTemplate(); ?>