15 calls to MigrationBase::displayMessage() in Migrate 6.2
- migrate_migrations in ./
migrate.module - Retrieve a list of all active migrations, ordered by dependencies. To be recognized, a class must be non-abstract, and derived from MigrationBase.
- Migration::addFieldMapping in includes/
migration.inc - Add a mapping for a destination field, specifying a source field and/or a default value.
- Migration::analyze in includes/
migration.inc - Perform an analysis operation - report on field values in the source.
- Migration::import in includes/
migration.inc - Perform an import operation - migrate items from source to destination.
- Migration::importedCount in includes/
migration.inc - Get the number of records successfully imported.
- Migration::processedCount in includes/
migration.inc - Get the number of source records processed.
- Migration::progressMessage in includes/
migration.inc - Outputs a progress message, reflecting the current status of a migration process.
- Migration::sourceCount in includes/
migration.inc - Convenience function to return count of total source records
- Migration::updateCount in includes/
migration.inc - Get the number of records marked as needing update.
- MigrationBase::handleException in includes/
base.inc - Takes an Exception object and both saves and displays it, pulling additional information on the location triggering the exception.
- MigrationBase::memoryExceeded in includes/
base.inc - Test whether we've exceeded the desired memory threshold. If so, output a message.
- MigrationBase::saveMessage in includes/
base.inc - Default to printing messages, but derived classes are expected to save messages indexed by current source ID.
- WineFinishMigration::import in migrate_example/
wine.inc - WinePrepMigration::import in migrate_example/
wine.inc - XMLMigration::addFieldMapping in plugins/
sources/ xml.inc - Override the default addFieldMapping(), so we can create our special field mapping class. TODO: Find a cleaner way to just substitute a different mapping class