You are here

public function MigrateXMLReader::key in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 plugins/sources/xml.inc \MigrateXMLReader::key()

Implementation of Iterator::key().

Return value

null|string Current key

File

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

Class

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

Code

public function key() {
  return $this->currentId;
}