You are here

protected property MigrateXMLReader::$currentPath in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/sources/xml.inc \MigrateXMLReader::currentPath

Array representing the path to the current element as we traverse the XML. For example, if in an XML string like '<file><article>...</article></file>' we are positioned within the article element, currentPath will be array(0 => 'file', 1 => 'article').

Type: array

File

plugins/sources/xml.inc, line 636
Support for migration from XML sources.

Class

MigrateXMLReader
Makes an XMLReader object iterable, returning elements matching a restricted xpath-like syntax.

Code

protected $currentPath = array();