[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
classes
/
xml
/
[
Home
]
File: XMLParserDOMHandler.inc.php
<?php /** * @file classes/xml/XMLParserDOMHandler.inc.php * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @class XMLParserDOMHandler * @ingroup xml * @see XMLParser * * @brief Default handler for XMLParser returning a simple DOM-style object. * This handler parses an XML document into a tree structure of XMLNode objects. * */ import('lib.pkp.classes.xml.XMLNode'); class XMLParserDOMHandler extends XMLParserHandler { /** @var XMLNode reference to the root node */ var $rootNode; /** @var XMLNode reference to the node currently being parsed */ var $currentNode; /** @var reference to the current data */ var $currentData; /** * Constructor. */ function XMLParserHandler() { $this->rootNodes = array(); $this->currentNode = null; } function destroy() { unset($this->currentNode, $this->currentData, $this->rootNode); } /** * Callback function to act as the start element handler. */ function startElement(&$parser, $tag, $attributes) { $this->currentData = null; $node = new XMLNode($tag); $node->setAttributes($attributes); if (isset($this->currentNode)) { $this->currentNode->addChild($node); $node->setParent($this->currentNode); } else { $this->rootNode =& $node; } $this->currentNode =& $node; } /** * Callback function to act as the end element handler. */ function endElement(&$parser, $tag) { $this->currentNode->setValue($this->currentData); $this->currentNode =& $this->currentNode->getParent(); $this->currentData = null; } /** * Callback function to act as the character data handler. */ function characterData(&$parser, $data) { $this->currentData .= $data; } /** * Returns a reference to the root node of the tree representing the document. * @return XMLNode */ function &getResult() { return $this->rootNode; } } ?>