blob: 81dd8e6b963b7c184996d3aa0e3e86e0e9a6bfdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
/**
* PHPTAL templating engine
*
* PHP Version 5
*
* @category HTML
* @package PHPTAL
* @author Laurent Bedubourg <lbedubourg@motion-twin.com>
* @author Kornel Lesiński <kornel@aardvarkmedia.co.uk>
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @version SVN: $Id$
* @link http://phptal.org/
*/
/**
* @package PHPTAL
* @subpackage Namespace
*/
class PHPTAL_Namespace_I18N extends PHPTAL_Namespace_Builtin
{
public function __construct()
{
parent::__construct('i18n', 'http://xml.zope.org/namespaces/i18n');
$this->addAttribute(new PHPTAL_NamespaceAttributeContent('translate', 5));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('name', 5));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('attributes', 10));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('domain', 3));
}
}
|