You are here

function NodeExportXmlDecoder::data_handler in Node export 7.3

Same name and namespace in other branches
  1. 6.3 modules/node_export_xml/node_export_xml.module \NodeExportXmlDecoder::data_handler()

File

formats/xml.inc, line 224
The Node export XML format handler.

Class

NodeExportXmlDecoder
Class for parsing Node export XML.

Code

function data_handler($parser, $data) {
  $this->stack[count($this->stack) - 1]['data'] .= $data;
}