You are here

public function MigrateSimpleContentParser::getChunkCount in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/sources/files.inc \MigrateSimpleContentParser::getChunkCount()

Overrides MigrateContentParser::getChunkCount

File

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

Class

MigrateSimpleContentParser
Simple parser that doesn't actually parse anything - it just returns the whole file as a single chunk. This is the default parser used and is primarily for when your HTML files map one-to-one to nodes.

Code

public function getChunkCount() {
  return 1;
}