You are here

protected function LingotekManagementFormBase::createDebugExportBatch in Lingotek Translation 3.5.x

Same name and namespace in other branches
  1. 8.2 src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  2. 4.0.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  3. 3.0.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  4. 3.1.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  5. 3.2.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  6. 3.3.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  7. 3.4.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  8. 3.6.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  9. 3.7.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()
  10. 3.8.x src/Form/LingotekManagementFormBase.php \Drupal\lingotek\Form\LingotekManagementFormBase::createDebugExportBatch()

Create and set an export batch.

Parameters

array $values: Array of ids to upload.

1 call to LingotekManagementFormBase::createDebugExportBatch()
LingotekManagementFormBase::submitForm in src/Form/LingotekManagementFormBase.php
Form submission handler.

File

src/Form/LingotekManagementFormBase.php, line 754

Class

LingotekManagementFormBase
Form for bulk management of content.

Namespace

Drupal\lingotek\Form

Code

protected function createDebugExportBatch($values) {
  $entities = $this
    ->getSelectedEntities($values);
  foreach ($entities as $entity) {
    $operations[] = [
      [
        $this,
        'debugExport',
      ],
      [
        $entity,
      ],
    ];
  }
  $batch = [
    'title' => $this
      ->t('Exporting content (debugging purposes)'),
    'operations' => $operations,
    'finished' => [
      $this,
      'debugExportFinished',
    ],
    'progressive' => TRUE,
  ];
  batch_set($batch);
}