You are here

abstract public function MigrateContentParser::getChunkIDs in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 plugins/sources/files.inc \MigrateContentParser::getChunkIDs()

Return the list of IDs for all the chunks found in the current file.

Unless $alwaysUseChunkIDs is set to TRUE, this is only called if getChunkCount() returned a count greater than 1.

Return value

An array of IDs.

1 method overrides MigrateContentParser::getChunkIDs()
MigrateSimpleContentParser::getChunkIDs in plugins/sources/files.inc
Return the list of IDs for all the chunks found in the current file.

File

plugins/sources/files.inc, line 67
Support for migration from files sources.

Class

MigrateContentParser
MigrateContentParser provides abstract methods that must be supported by an implementing class. We need to be able to get a list of the chunk IDs, a count, and then retrieve each chunk by it's ID.

Code

public abstract function getChunkIDs();