2003-06-06 01:06:52 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-08 16:18:22 +08:00
|
|
|
| PHP Version 5 |
|
2003-06-06 01:06:52 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2010-01-03 17:23:27 +08:00
|
|
|
| Copyright (c) 1997-2010 The PHP Group |
|
2003-06-06 01:06:52 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2003-06-06 01:06:52 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2003-06-06 01:06:52 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Christian Stocker <chregu@php.net> |
|
|
|
|
| Rob Richards <rrichards@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "php.h"
|
2003-08-22 23:04:29 +08:00
|
|
|
#if HAVE_LIBXML && HAVE_DOM
|
2003-06-06 01:06:52 +08:00
|
|
|
#include "php_dom.h"
|
|
|
|
|
2008-02-04 23:22:59 +08:00
|
|
|
/* {{{ arginfo */
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_entityreference_construct, 0, 0, 1)
|
|
|
|
ZEND_ARG_INFO(0, name)
|
|
|
|
ZEND_END_ARG_INFO();
|
|
|
|
/* }}} */
|
|
|
|
|
2003-06-06 01:06:52 +08:00
|
|
|
/*
|
2004-05-31 20:50:28 +08:00
|
|
|
* class DOMEntityReference extends DOMNode
|
2003-06-06 01:06:52 +08:00
|
|
|
*
|
|
|
|
* URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-11C98490
|
|
|
|
* Since:
|
|
|
|
*/
|
|
|
|
|
2007-09-28 02:00:48 +08:00
|
|
|
const zend_function_entry php_dom_entityreference_class_functions[] = {
|
2008-02-04 23:22:59 +08:00
|
|
|
PHP_ME(domentityreference, __construct, arginfo_dom_entityreference_construct, ZEND_ACC_PUBLIC)
|
2003-06-06 01:06:52 +08:00
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
2004-05-31 20:50:28 +08:00
|
|
|
/* {{{ proto void DOMEntityReference::__construct(string name); */
|
2004-04-01 01:18:59 +08:00
|
|
|
PHP_METHOD(domentityreference, __construct)
|
2003-06-06 01:06:52 +08:00
|
|
|
{
|
|
|
|
zval *id;
|
|
|
|
xmlNode *node;
|
|
|
|
xmlNodePtr oldnode = NULL;
|
|
|
|
dom_object *intern;
|
|
|
|
char *name;
|
2004-05-27 19:15:45 +08:00
|
|
|
int name_len, name_valid;
|
2008-08-09 06:07:07 +08:00
|
|
|
zend_error_handling error_handling;
|
2003-06-06 01:06:52 +08:00
|
|
|
|
2008-08-09 06:07:07 +08:00
|
|
|
zend_replace_error_handling(EH_THROW, dom_domexception_class_entry, &error_handling TSRMLS_CC);
|
2004-01-23 05:16:05 +08:00
|
|
|
if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_entityreference_class_entry, &name, &name_len) == FAILURE) {
|
2008-11-19 10:00:53 +08:00
|
|
|
zend_restore_error_handling(&error_handling TSRMLS_CC);
|
2003-06-06 01:06:52 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-08-09 06:07:07 +08:00
|
|
|
zend_restore_error_handling(&error_handling TSRMLS_CC);
|
2004-05-27 19:15:45 +08:00
|
|
|
|
|
|
|
name_valid = xmlValidateName((xmlChar *) name, 0);
|
|
|
|
if (name_valid != 0) {
|
2004-05-16 18:30:16 +08:00
|
|
|
php_dom_throw_error(INVALID_CHARACTER_ERR, 1 TSRMLS_CC);
|
2003-06-06 01:06:52 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
node = xmlNewReference(NULL, name);
|
|
|
|
|
2004-05-16 18:30:16 +08:00
|
|
|
if (!node) {
|
|
|
|
php_dom_throw_error(INVALID_STATE_ERR, 1 TSRMLS_CC);
|
2003-06-06 01:06:52 +08:00
|
|
|
RETURN_FALSE;
|
2004-05-16 18:30:16 +08:00
|
|
|
}
|
2003-06-06 01:06:52 +08:00
|
|
|
|
|
|
|
intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC);
|
|
|
|
if (intern != NULL) {
|
2006-09-14 21:35:02 +08:00
|
|
|
oldnode = dom_object_get_node(intern);
|
2003-06-06 01:06:52 +08:00
|
|
|
if (oldnode != NULL) {
|
2003-10-26 23:57:02 +08:00
|
|
|
php_libxml_node_free_resource(oldnode TSRMLS_CC);
|
2003-06-06 01:06:52 +08:00
|
|
|
}
|
2003-10-26 23:57:02 +08:00
|
|
|
php_libxml_increment_node_ptr((php_libxml_node_object *)intern, node, (void *)intern TSRMLS_CC);
|
2003-06-06 01:06:52 +08:00
|
|
|
}
|
|
|
|
}
|
2004-05-31 20:50:28 +08:00
|
|
|
/* }}} end DOMEntityReference::__construct */
|
2008-08-14 16:39:05 +08:00
|
|
|
|
2003-08-22 23:04:29 +08:00
|
|
|
#endif
|
2008-08-14 16:39:05 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|