You are here

public function LingotekConfigurationService::setConfigEntityDefaultProfileId in Lingotek Translation 3.4.x

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

File

src/LingotekConfigurationService.php, line 131

Class

LingotekConfigurationService
Service for managing lingotek configuration.

Namespace

Drupal\lingotek

Code

public function setConfigEntityDefaultProfileId($plugin_id, $profile_id) {
  $config = \Drupal::configFactory()
    ->getEditable('lingotek.settings');
  $config
    ->set('translate.config.' . $plugin_id . '.profile', $profile_id);
  $config
    ->save();
}