abstract public function MigrateList::__toString in Migrate 7.2
Same name and namespace in other branches
- 6.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
4 methods override MigrateList::__toString()
- MigrateListCSV::__toString in plugins/
sources/ csv.inc - Return a string representing the source file.
- 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 28 - 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();