function content_translation_language_types_info_alter

content_translation_language_types_info_alter(array &$language_types)

Implements hook_language_type_info_alter().

File

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

Code

function content_translation_language_types_info_alter(array &$language_types) {
  // Make content language negotiation configurable by removing the 'locked'
  // flag.
  $language_types[LanguageInterface::TYPE_CONTENT]['locked'] = FALSE;
  unset($language_types[LanguageInterface::TYPE_CONTENT]['fixed']);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!content_translation!content_translation.module/function/content_translation_language_types_info_alter/8.1.x