function translation_entity_element_info_alter

Implements hook_element_info_alter().

File

drupal/core/modules/translation_entity/translation_entity.module, line 877
Allows entities to be translated into different languages.

Code

function translation_entity_element_info_alter(&$type) {
  if (isset($type['language_configuration'])) {
    $type['language_configuration']['#process'][] = 'translation_entity_language_configuration_element_process';
  }
}