You are here

public function LingotekWorkbenchModerationConfigurationService::setDownloadTransition in Lingotek Translation 4.0.x

Same name and namespace in other branches
  1. 8.2 src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()
  2. 3.1.x src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()
  3. 3.2.x src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()
  4. 3.3.x src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()
  5. 3.4.x src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()
  6. 3.5.x src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()
  7. 3.6.x src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()
  8. 3.7.x src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()
  9. 3.8.x src/Moderation/LingotekWorkbenchModerationConfigurationService.php \Drupal\lingotek\Moderation\LingotekWorkbenchModerationConfigurationService::setDownloadTransition()

Sets the moderation transition ID that triggers a download.

Parameters

string $entity_type_id: An entity type ID.

string $bundle: A bundle.

string $transition: The moderation transition ID.

Return value

string The moderation transition ID that should be triggered after a download.

Overrides LingotekModerationConfigurationServiceInterface::setDownloadTransition

File

src/Moderation/LingotekWorkbenchModerationConfigurationService.php, line 68

Class

LingotekWorkbenchModerationConfigurationService
Manages workbench moderation settings in the Lingotek integration.

Namespace

Drupal\lingotek\Moderation

Code

public function setDownloadTransition($entity_type_id, $bundle, $transition) {
  $config = $this->configFactory
    ->getEditable('lingotek.settings');
  $config
    ->set('translate.entity.' . $entity_type_id . '.' . $bundle . '.workbench_moderation.download_transition', $transition);
  $config
    ->save();
  return $transition;
}