Библиотека для cis, online, cms1

This commit is contained in:
Фёдор Подлеснов 2016-06-29 18:51:32 +03:00
commit 3c2e614d87
269 changed files with 39854 additions and 0 deletions

View file

@ -0,0 +1,28 @@
<?php
require_once PHPTAL_DIR.'PHPTAL/Dom/Defs.php';
require_once PHPTAL_DIR.'PHPTAL/Namespace.php';
require_once PHPTAL_DIR.'PHPTAL/Php/Attribute/METAL/DefineMacro.php';
require_once PHPTAL_DIR.'PHPTAL/Php/Attribute/METAL/UseMacro.php';
require_once PHPTAL_DIR.'PHPTAL/Php/Attribute/METAL/DefineSlot.php';
require_once PHPTAL_DIR.'PHPTAL/Php/Attribute/METAL/FillSlot.php';
/**
* @package phptal.namespace
*/
class PHPTAL_Namespace_METAL extends PHPTAL_BuiltinNamespace
{
public function __construct()
{
parent::__construct('metal', 'http://xml.zope.org/namespaces/metal');
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('define-macro', 1));
$this->addAttribute(new PHPTAL_NamespaceAttributeReplace('use-macro', 9));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('define-slot', 9));
$this->addAttribute(new PHPTAL_NamespaceAttributeSurround('fill-slot', 9));
}
}
PHPTAL_Dom_Defs::getInstance()->registerNamespace(new PHPTAL_Namespace_METAL());
?>