You are here

public function MigrateItemsXML::__toString in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/sources/xml.inc \MigrateItemsXML::__toString()

Our public face is the URL we're getting items from

Return value

string

Overrides MigrateItems::__toString

File

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

Class

MigrateItemsXML
Implementation of MigrateItems, for providing a list of IDs and for retrieving a parsed XML document given an ID from this list.

Code

public function __toString() {
  return 'url = ' . $this->xmlUrl . ' | item xpath = ' . $this->itemXpath . ' | item ID xpath = ' . $this->itemIDXpath;
}