1 : /*
2 : +----------------------------------------------------------------------+
3 : | PHP Version 6 |
4 : +----------------------------------------------------------------------+
5 : | Copyright (c) 1997-2009 The PHP Group |
6 : +----------------------------------------------------------------------+
7 : | This source file is subject to version 3.01 of the PHP license, |
8 : | that is bundled with this package in the file LICENSE, and is |
9 : | available through the world-wide-web at the following url: |
10 : | http://www.php.net/license/3_01.txt |
11 : | If you did not receive a copy of the PHP license and are unable to |
12 : | obtain it through the world-wide-web, please send a note to |
13 : | license@php.net so we can mail you a copy immediately. |
14 : +----------------------------------------------------------------------+
15 : | Authors: Christian Stocker <chregu@php.net> |
16 : | Rob Richards <rrichards@php.net> |
17 : +----------------------------------------------------------------------+
18 : */
19 :
20 : /* $Id: domconfiguration.c 276986 2009-03-10 23:40:06Z helly $ */
21 :
22 : #ifdef HAVE_CONFIG_H
23 : #include "config.h"
24 : #endif
25 :
26 : #include "php.h"
27 : #if HAVE_LIBXML && HAVE_DOM
28 : #include "php_dom.h"
29 :
30 : /* {{{ arginfo */
31 : ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_configuration_set_parameter, 0, 0, 2)
32 : ZEND_ARG_INFO(0, name)
33 : ZEND_ARG_INFO(0, value)
34 : ZEND_END_ARG_INFO();
35 :
36 : ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_configuration_get_parameter, 0, 0, 0)
37 : ZEND_ARG_INFO(0, name)
38 : ZEND_END_ARG_INFO();
39 :
40 : ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_configuration_can_set_parameter, 0, 0, 0)
41 : ZEND_ARG_INFO(0, name)
42 : ZEND_ARG_INFO(0, value)
43 : ZEND_END_ARG_INFO();
44 : /* }}} */
45 :
46 : /*
47 : * class domdomconfiguration
48 : *
49 : * URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration
50 : * Since: DOM Level 3
51 : */
52 :
53 : const zend_function_entry php_dom_domconfiguration_class_functions[] = {
54 : PHP_FALIAS(setParameter, dom_domconfiguration_set_parameter, arginfo_dom_configuration_set_parameter)
55 : PHP_FALIAS(getParameter, dom_domconfiguration_get_parameter, arginfo_dom_configuration_get_parameter)
56 : PHP_FALIAS(canSetParameter, dom_domconfiguration_can_set_parameter, arginfo_dom_configuration_can_set_parameter)
57 : {NULL, NULL, NULL}
58 : };
59 :
60 : /* {{{ attribute protos, not implemented yet */
61 :
62 :
63 : /* {{{ proto dom_void dom_domconfiguration_set_parameter(string name, domuserdata value) U
64 : URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-property
65 : Since:
66 : */
67 : PHP_FUNCTION(dom_domconfiguration_set_parameter)
68 0 : {
69 0 : DOM_NOT_IMPLEMENTED();
70 : }
71 : /* }}} end dom_domconfiguration_set_parameter */
72 :
73 :
74 : /* {{{ proto domdomuserdata dom_domconfiguration_get_parameter(string name) U
75 : URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-getParameter
76 : Since:
77 : */
78 : PHP_FUNCTION(dom_domconfiguration_get_parameter)
79 0 : {
80 0 : DOM_NOT_IMPLEMENTED();
81 : }
82 : /* }}} end dom_domconfiguration_get_parameter */
83 :
84 :
85 : /* {{{ proto boolean dom_domconfiguration_can_set_parameter(string name, domuserdata value) U
86 : URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-canSetParameter
87 : Since:
88 : */
89 : PHP_FUNCTION(dom_domconfiguration_can_set_parameter)
90 0 : {
91 0 : DOM_NOT_IMPLEMENTED();
92 : }
93 : /* }}} end dom_domconfiguration_can_set_parameter */
94 :
95 : /* }}} */
96 :
97 : #endif
98 :
99 : /*
100 : * Local variables:
101 : * tab-width: 4
102 : * c-basic-offset: 4
103 : * End:
104 : * vim600: noet sw=4 ts=4 fdm=marker
105 : * vim<600: noet sw=4 ts=4
106 : */
|