<?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: TAL.php 868 2010-05-25 22:27:39Z kornel $
* @link http://phptal.org/
*/
/**
* @package PHPTAL
* @subpackage Namespace
*/
class PHPTAL_Namespace_TAL extends PHPTAL_Namespace_Builtin
{
public function __construct()
{
parent::__construct('tal', 'http://xml.zope.org/namespaces/tal');
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('define', 4));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('condition', 6));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('repeat', 8));
$this->addAttribute(new PHPTAL_NamespaceAttributeContent('content', 11));
$this->addAttribute(new PHPTAL_NamespaceAttributeReplace('replace', 9));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('attributes', 9));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('omit-tag', 0));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('comment', 12));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('on-error', 2));
}
}