By gábor hojtsy on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x
Issue links:
Description:
A new language.module was introduced in Drupal 8 to abstract the language concept and configuration. Consequently, recently introduced hooks and API functions (all added in Drupal 8) were moved to the language_* namespace from the locale_language_* namespace. Such functions and hooks include:
- language_delete() and hook_language_delete()
- language_save() and its hooks hook_language_presave(), hook_language_insert() and hook_language_update()
- language_load() was introduced in locale.module earlier with the same short name, so its name did not change, its location changed. (There is no hook associated with loading languages).
The work is ongoing on the module, including fixing the schema to use "langcode" vs. "language" for the language code (http://drupal.org/node/1357918).
Impacts:
Site builders, administrators, editors
Module developers