content_translation_entity_bundle_info_alter

content_translation_entity_bundle_info_alter(&$bundles)

Implements hook_entity_bundle_info_alter().

File

core/modules/content_translation/content_translation.module, line 163
Allows entities to be translated into different languages.

Code

function content_translation_entity_bundle_info_alter(&$bundles) {
  foreach ($bundles as $entity_type => &$info) {
    foreach ($info as $bundle => &$bundle_info) {
      $bundle_info['translatable'] = \Drupal::service('content_translation.manager')->isEnabled($entity_type, $bundle);
    }
  }
}
doc_Drupal
2016-10-29 08:58:37
Comments
Leave a Comment

Please login to continue.