You are here

public function LingotekContentModerationConfigurationService::getDownloadTransition in Lingotek Translation 3.0.x

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

Gets the moderation transition ID that triggers a download.

Parameters

string $entity_type_id: An entity type ID.

string $bundle: A bundle.

Return value

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

Overrides LingotekModerationConfigurationServiceInterface::getDownloadTransition

File

src/Moderation/LingotekContentModerationConfigurationService.php, line 49

Class

LingotekContentModerationConfigurationService
Service for managing content moderation settings in the Lingotek integration.

Namespace

Drupal\lingotek\Moderation

Code

public function getDownloadTransition($entity_type_id, $bundle) {
  $config = $this->configFactory
    ->get('lingotek.settings');
  $download_transition = $config
    ->get('translate.entity.' . $entity_type_id . '.' . $bundle . '.content_moderation.download_transition');
  return $download_transition;
}