summaryrefslogtreecommitdiff
path: root/lib/phptal/PHPTAL/Namespace.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/phptal/PHPTAL/Namespace.php')
-rw-r--r--lib/phptal/PHPTAL/Namespace.php70
1 files changed, 70 insertions, 0 deletions
diff --git a/lib/phptal/PHPTAL/Namespace.php b/lib/phptal/PHPTAL/Namespace.php
new file mode 100644
index 0000000..17d5911
--- /dev/null
+++ b/lib/phptal/PHPTAL/Namespace.php
@@ -0,0 +1,70 @@
+<?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/
+ */
+
+
+/**
+ * @see PHPTAL_NamespaceAttribute
+ * @package PHPTAL
+ * @subpackage Namespace
+ */
+abstract class PHPTAL_Namespace
+{
+ private $prefix, $namespace_uri;
+ protected $_attributes;
+
+ public function __construct($prefix, $namespace_uri)
+ {
+ if (!$namespace_uri || !$prefix) {
+ throw new PHPTAL_ConfigurationException("Can't create namespace with empty prefix or namespace URI");
+ }
+
+ $this->_attributes = array();
+ $this->prefix = $prefix;
+ $this->namespace_uri = $namespace_uri;
+ }
+
+ public function getPrefix()
+ {
+ return $this->prefix;
+ }
+
+ public function getNamespaceURI()
+ {
+ return $this->namespace_uri;
+ }
+
+ public function hasAttribute($attributeName)
+ {
+ return array_key_exists(strtolower($attributeName), $this->_attributes);
+ }
+
+ public function getAttribute($attributeName)
+ {
+ return $this->_attributes[strtolower($attributeName)];
+ }
+
+ public function addAttribute(PHPTAL_NamespaceAttribute $attribute)
+ {
+ $attribute->setNamespace($this);
+ $this->_attributes[strtolower($attribute->getLocalName())] = $attribute;
+ }
+
+ public function getAttributes()
+ {
+ return $this->_attributes;
+ }
+
+ abstract public function createAttributeHandler(PHPTAL_NamespaceAttribute $att, PHPTAL_Dom_Element $tag, $expression);
+}