You are here

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'
_migrate_dashboard_form_run in ./migrate_pages.inc

File

./migrate_pages.inc, line 402

Code

function _migrate_content_process_finish($success, $results, $operations) {
  foreach ($results as $result) {
    drupal_set_message($result);
  }
}