You are here

function NodeExportXmlDecoder::end_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::end_handler()

File

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

Class

NodeExportXmlDecoder
Class for parsing Node export XML.

Code

function end_handler($parser, $name, $attributes = array()) {
  $token = array_pop($this->stack);
  $this->stack[count($this->stack) - 1]['children'][] = $token;
}