1 /*
2 +----------------------------------------------------------------------+
3 | PHP Version 7 |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 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 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "php.h"
25 #if HAVE_LIBXML && HAVE_DOM
26 #include "php_dom.h"
27
28 /* {{{ arginfo */
29 ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_entityreference_construct, 0, 0, 1)
30 ZEND_ARG_INFO(0, name)
31 ZEND_END_ARG_INFO();
32 /* }}} */
33
34 /*
35 * class DOMEntityReference extends DOMNode
36 *
37 * URL: https://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-11C98490
38 * Since:
39 */
40
41 const zend_function_entry php_dom_entityreference_class_functions[] = {
42 PHP_ME(domentityreference, __construct, arginfo_dom_entityreference_construct, ZEND_ACC_PUBLIC)
43 PHP_FE_END
44 };
45
46 /* {{{ proto DOMEntityReference::__construct(string name) */
PHP_METHOD(domentityreference,__construct)47 PHP_METHOD(domentityreference, __construct)
48 {
49 xmlNode *node;
50 xmlNodePtr oldnode = NULL;
51 dom_object *intern;
52 char *name;
53 size_t name_len, name_valid;
54
55 if (zend_parse_parameters_throw(ZEND_NUM_ARGS(), "s", &name, &name_len) == FAILURE) {
56 return;
57 }
58
59 name_valid = xmlValidateName((xmlChar *) name, 0);
60 if (name_valid != 0) {
61 php_dom_throw_error(INVALID_CHARACTER_ERR, 1);
62 RETURN_FALSE;
63 }
64
65 node = xmlNewReference(NULL, (xmlChar *) name);
66
67 if (!node) {
68 php_dom_throw_error(INVALID_STATE_ERR, 1);
69 RETURN_FALSE;
70 }
71
72 intern = Z_DOMOBJ_P(ZEND_THIS);
73 if (intern != NULL) {
74 oldnode = dom_object_get_node(intern);
75 if (oldnode != NULL) {
76 php_libxml_node_free_resource(oldnode );
77 }
78 php_libxml_increment_node_ptr((php_libxml_node_object *)intern, node, (void *)intern);
79 }
80 }
81 /* }}} end DOMEntityReference::__construct */
82
83 #endif
84