You are here

function NodeExportXmlDecoder::start_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::start_handler()

File

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

Class

NodeExportXmlDecoder
Class for parsing Node export XML.

Code

function start_handler($parser, $name, $attributes = array()) {
  $token = array();
  $token['name'] = strtolower($name);
  $token['attributes'] = $attributes;
  $token['data'] = '';
  $token['children'] = array();
  $this->stack[] = $token;
}