summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.h
diff options
context:
space:
mode:
authorChristian Stocker <chregu@php.net>2002-08-14 14:23:44 +0000
committerChristian Stocker <chregu@php.net>2002-08-14 14:23:44 +0000
commit63874f901762030a5b6048930ba70da56161c291 (patch)
treebb128360e75db98b381bd0565c37f17a520ed636 /ext/domxml/php_domxml.h
parent6be8fb6a2ea3cfa8a6fbf721ce319260b0392510 (diff)
downloadphp-git-63874f901762030a5b6048930ba70da56161c291.tar.gz
@ - Added some namespace support with DomNode->add_namespace(uri, prefix)
@ and DomDocument->create_element_ns(uri, nodename) (chregu)
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r--ext/domxml/php_domxml.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h
index 30310c11c4..c1d35540c8 100644
--- a/ext/domxml/php_domxml.h
+++ b/ext/domxml/php_domxml.h
@@ -89,6 +89,7 @@ PHP_FUNCTION(domxml_substitute_entities_default);
PHP_FUNCTION(domxml_doc_doctype);
PHP_FUNCTION(domxml_doc_implementation);
PHP_FUNCTION(domxml_doc_create_element);
+PHP_FUNCTION(domxml_doc_create_element_ns);
PHP_FUNCTION(domxml_doc_create_text_node);
PHP_FUNCTION(domxml_doc_create_comment);
PHP_FUNCTION(domxml_doc_create_processing_instruction);
@@ -140,6 +141,7 @@ PHP_FUNCTION(domxml_node_has_child_nodes);
PHP_FUNCTION(domxml_node_parent);
PHP_FUNCTION(domxml_node_prefix);
PHP_FUNCTION(domxml_node_namespace_uri);
+PHP_FUNCTION(domxml_node_add_namespace);
PHP_FUNCTION(domxml_node);
PHP_FUNCTION(domxml_clone_node);
PHP_FUNCTION(domxml_node_unlink_node);