function _migrate_process_message in Migrate 6
Capture messages generated during an import or clear process
1 string reference to '_migrate_process_message'
- migrate_content_process_batch in ./
migrate.module - Process all enabled migration processes in a browser, using the Batch API to break it into manageable chunks.
File
- ./
migrate.module, line 991 - This module provides tools at "administer >> content >> migrate" for analyzing data from various sources and importing them into Drupal tables.
Code
function _migrate_process_message($message) {
global $_migrate_messages;
$_migrate_messages[] = $message;
}