public function LingotekConfigurationService::setConfigEntityDefaultProfileId in Lingotek Translation 8
Same name and namespace in other branches
- 8.2 src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 4.0.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.0.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.1.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.2.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.3.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.4.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.5.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.6.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.7.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
- 3.8.x src/LingotekConfigurationService.php \Drupal\lingotek\LingotekConfigurationService::setConfigEntityDefaultProfileId()
File
- src/
LingotekConfigurationService.php, line 95 - Contains \Drupal\lingotek\LingotekConfigurationService.
Class
- LingotekConfigurationService
- Service for managing lingotek configuration.
Namespace
Drupal\lingotekCode
public function setConfigEntityDefaultProfileId($plugin_id, $profile_id) {
$config = \Drupal::configFactory()
->getEditable('lingotek.settings');
$config
->set('translate.config.' . $plugin_id . '.profile', $profile_id);
$config
->save();
}