<?php
/**
* PHPTAL templating engine
*
* PHP Version 5
*
* @category HTML
* @package PHPTAL
* @author Laurent Bedubourg <hide@address.com>
* @author Kornel LesiÅski <hide@address.com>
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id: PHPTAL.php 868 2010-05-25 22:27:39Z kornel $
* @link http://phptal.org/
*/
/**
* @package PHPTAL
* @subpackage Namespace
*/
class PHPTAL_Namespace_PHPTAL extends PHPTAL_Namespace_Builtin
{
public function __construct()
{
parent::__construct('phptal', 'http://phptal.org/ns/phptal');
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('tales', -1));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('debug', -2));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('id', 7));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('cache', -3));
}
}