function translation_entity_install

Implements hook_install().

File

drupal/core/modules/translation_entity/translation_entity.install, line 84
Installation functions for Entity Translation module.

Code

function translation_entity_install() {

  // Assign a fairly low weight to ensure our implementation of
  // hook_module_implements_alter() is run among the last ones.
  module_set_weight('translation_entity', 10);
  language_negotiation_include();
  language_negotiation_set(Language::TYPE_CONTENT, array(
    LANGUAGE_NEGOTIATION_URL => 0,
  ));
}