You are here

public function OgMigrateAddFields::isComplete in Organic groups 7.2

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

1 call to OgMigrateAddFields::isComplete()
OgMigrateAddFields::__construct in includes/migrate/7000/og_add_fields.inc
Construction of a MigrationBase instance.

File

includes/migrate/7000/og_add_fields.inc, line 16
Add OG related fields to group and group-content node-types.

Class

OgMigrateAddFields
@file Add OG related fields to group and group-content node-types.

Code

public function isComplete() {
  return !variable_get('og_7000_add_field', FALSE);
}