You are here

abstract public function MigrateList::__toString in Migrate 6.2

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

Implementors are expected to return a string representing where the listing is obtained from (a URL, file directory, etc.)

Return value

string

3 methods override MigrateList::__toString()
MigrateListFiles::__toString in plugins/sources/files.inc
Our public face is the directories we're getting items from.
MigrateListJSON::__toString in plugins/sources/json.inc
Our public face is the URL we're getting items from
MigrateListXML::__toString in plugins/sources/xml.inc
Our public face is the URL we're getting items from

File

plugins/sources/list.inc, line 26
Support for migration from sources with distinct means of listing items to import and obtaining the items themselves.

Class

MigrateList
Extend the MigrateList class to provide a means to obtain a list of IDs to be migrated from a given source (e.g., MigrateListXML extends MigrateList to obtain a list of IDs from an XML document).

Code

public abstract function __toString();