public ContentTranslationManager::isEnabled($entity_type_id, $bundle = NULL)
Determines whether the given entity type is translatable.
@returns bool TRUE if the specified bundle is translatable. If no bundle is provided returns TRUE if at least one of the entity bundles is translatable.
Parameters
string $entity_type_id: The type of the entity.
string $bundle: (optional) The bundle of the entity. If no bundle is provided, all the available bundles are checked.
Overrides ContentTranslationManagerInterface::isEnabled
File
- core/modules/content_translation/src/ContentTranslationManager.php, line 91
Class
- ContentTranslationManager
- Provides common functionality for content translation.
Namespace
Drupal\content_translation
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | public function isEnabled( $entity_type_id , $bundle = NULL) { $enabled = FALSE; if ( $this ->isSupported( $entity_type_id )) { $bundles = ! empty ( $bundle ) ? array ( $bundle ) : array_keys ( $this ->entityManager->getBundleInfo( $entity_type_id )); foreach ( $bundles as $bundle ) { $config = $this ->loadContentLanguageSettings( $entity_type_id , $bundle ); if ( $config ->getThirdPartySetting( 'content_translation' , 'enabled' , FALSE)) { $enabled = TRUE; break ; } } } return $enabled ; } |
Please login to continue.