diff options
author | Jaroslaw Kolakowski <jarkol@php.net> | 2002-01-17 01:13:39 +0000 |
---|---|---|
committer | Jaroslaw Kolakowski <jarkol@php.net> | 2002-01-17 01:13:39 +0000 |
commit | bde957666059811394b7405ea4d2725e60a5b01a (patch) | |
tree | b7128c051c82ee39f728cbd3d615cd5ef096e1b5 /ext/domxml/php_domxml.h | |
parent | ec7286bc558605a3b8246b45fedc480ccc3aa821 (diff) | |
download | php-git-bde957666059811394b7405ea4d2725e60a5b01a.tar.gz |
Added XsltStylesheet class with methods:
- domxml_xslt_stylesheet(string),
- domxml_xslt_stylesheet_doc(DomDocument),
- domxml_xslt_stylesheet_file(filename),
- process(DomDocument,parameters array) - previously domxml_xslt_process().
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r-- | ext/domxml/php_domxml.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index 4028188171..3d31e6adeb 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -166,8 +166,11 @@ PHP_FUNCTION(domxml_test); /* DOMXSLT functions */ #if HAVE_DOMXSLT -PHP_FUNCTION(domxml_xslt_version); +PHP_FUNCTION(domxml_xslt_stylesheet); +PHP_FUNCTION(domxml_xslt_stylesheet_doc); +PHP_FUNCTION(domxml_xslt_stylesheet_file); PHP_FUNCTION(domxml_xslt_process); +PHP_FUNCTION(domxml_xslt_version); #endif #else |