public function WineFinishMigration::isComplete in Migrate 7.2
Same name and namespace in other branches
- 6.2 migrate_example/wine.inc \WineFinishMigration::isComplete()
Reports whether this migration process is complete. For a Migration, for example, this would be whether all available source rows have been processed. Other MigrationBase classes will need to return TRUE/FALSE appropriately.
Overrides MigrationBase::isComplete
File
- migrate_example/
wine.inc, line 1553 - Advanced migration examples. These serve two purposes:
Class
- WineFinishMigration
- This migration works with WinePrepMigration to make sure auto_nodetitle is re-enabled if we disabled it.
Code
public function isComplete() {
// There is no incomplete state for this operation.
return TRUE;
}