You are here

protected function LingotekConfigTranslationService::clearConfigUploadProcessId in Lingotek Translation 3.7.x

Same name and namespace in other branches
  1. 4.0.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::clearConfigUploadProcessId()
  2. 3.8.x src/LingotekConfigTranslationService.php \Drupal\lingotek\LingotekConfigTranslationService::clearConfigUploadProcessId()

Clears the upload process id.

Parameters

string $mapper_id: The mapper being imported.

1 call to LingotekConfigTranslationService::clearConfigUploadProcessId()
LingotekConfigTranslationService::setConfigSourceStatus in src/LingotekConfigTranslationService.php
Sets the translation status of a given entity.

File

src/LingotekConfigTranslationService.php, line 2143

Class

LingotekConfigTranslationService
Service for managing Lingotek configuration translations.

Namespace

Drupal\lingotek

Code

protected function clearConfigUploadProcessId($mapper_id) {
  $state = \Drupal::state();
  $stored_process_ids = $state
    ->get('lingotek_import_process_ids', []);
  $parents = [
    'config_mapper',
    $mapper_id,
  ];
  NestedArray::unsetValue($stored_process_ids, $parents);
  $state
    ->set('lingotek_import_process_ids', $stored_process_ids);
}