function ContentTranslationManager::loadContentLanguageSettings
Same name in other branches
- 9 core/modules/content_translation/src/ContentTranslationManager.php \Drupal\content_translation\ContentTranslationManager::loadContentLanguageSettings()
- 8.9.x core/modules/content_translation/src/ContentTranslationManager.php \Drupal\content_translation\ContentTranslationManager::loadContentLanguageSettings()
- 10 core/modules/content_translation/src/ContentTranslationManager.php \Drupal\content_translation\ContentTranslationManager::loadContentLanguageSettings()
Loads a content language config entity based on the entity type and bundle.
Parameters
string $entity_type_id: ID of the entity type.
string $bundle: Bundle name.
Return value
\Drupal\language\Entity\ContentLanguageSettings The content language config entity if one exists. Otherwise, returns default values.
4 calls to ContentTranslationManager::loadContentLanguageSettings()
- ContentTranslationManager::getBundleTranslationSettings in core/
modules/ content_translation/ src/ ContentTranslationManager.php - ContentTranslationManager::isEnabled in core/
modules/ content_translation/ src/ ContentTranslationManager.php - ContentTranslationManager::setBundleTranslationSettings in core/
modules/ content_translation/ src/ ContentTranslationManager.php - ContentTranslationManager::setEnabled in core/
modules/ content_translation/ src/ ContentTranslationManager.php
File
-
core/
modules/ content_translation/ src/ ContentTranslationManager.php, line 137
Class
- ContentTranslationManager
- Provides common functionality for content translation.
Namespace
Drupal\content_translationCode
protected function loadContentLanguageSettings($entity_type_id, $bundle) {
if ($entity_type_id == NULL || $bundle == NULL) {
return NULL;
}
$config = $this->entityTypeManager
->getStorage('language_content_settings')
->load($entity_type_id . '.' . $bundle);
if ($config == NULL) {
$config = $this->entityTypeManager
->getStorage('language_content_settings')
->create([
'target_entity_type_id' => $entity_type_id,
'target_bundle' => $bundle,
]);
}
return $config;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.