function _migrate_content_process_finish in Migrate 6
Batch API finished callback - report results
Parameters
$success: Ignored
$results: List of results from batch processing
$operations: Ignored
1 string reference to '_migrate_content_process_finish'
File
- ./
migrate_pages.inc, line 402
Code
function _migrate_content_process_finish($success, $results, $operations) {
foreach ($results as $result) {
drupal_set_message($result);
}
}