You are here

protected function LingotekManagementForm::createLanguageRequestTranslationBatch in Lingotek Translation 8

Create and set a request translations batch for all languages.

Parameters

array $values: Array of ids to upload.

string $language: Language code for the request.

1 call to LingotekManagementForm::createLanguageRequestTranslationBatch()
LingotekManagementForm::submitForm in src/Form/LingotekManagementForm.php
Form submission handler.

File

src/Form/LingotekManagementForm.php, line 587
Contains \Drupal\Lingotek\Form\LingotekManagementForm.

Class

LingotekManagementForm
Form for bulk management of content.

Namespace

Drupal\lingotek\Form

Code

protected function createLanguageRequestTranslationBatch($values, $language) {
  $this
    ->createBatch('requestTranslation', $values, $this
    ->t('Requesting translations to Lingotek service.'), $language);
}