<?PHP
/**
 * patTemplate example that shows how to
 * use the 'useglobals' attribute for
 * condition templates.
 *
 * $Id: example_attributes_useglobals.php 453 2007-05-30 12:58:43Z gerd $
 *
 * @author		Stephan Schmidt <schst@php-tools.net>
 * @package		patTemplate
 * @subpackage	Examples
 * @link		http://www.php-tools.de
 */

    /**
     * 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();
	$tmpl->setRoot( 'templates' );
	
	$tmpl->readTemplatesFromInput( 'example_attributes_useglobals.tmpl' );
	
	$tmpl->addGlobalVar( 'title', 'The useglobals attribute.' );
	
	$tmpl->displayParsedTemplate();
?>