You are here

function content_export_yaml_import_index_batch_process in Content Export YAML 8

1 string reference to 'content_export_yaml_import_index_batch_process'
drush_content_export_yaml_cim_node in drush/content_export_yaml.drush.inc

File

drush/content_export_yaml.batch.inc, line 55

Code

function content_export_yaml_import_index_batch_process($info, $context) {

  // check if numeric
  try {
    $export = new ContentExport();
    $status = $export
      ->importEntity($info['id'], 'node');
    if ($status) {
      drush_print('Success imported id = ' . $info['index']);
    }
  } catch (\Exception $e) {
    $message = "Item :" . $info['index'] . " Error: " . $e
      ->getMessage();
    \Drupal::logger("content_export")
      ->error($message);
  }
}