function hook_language_update

React to a language that was just updated in the system.

Parameters

$language: A language object.

Related topics

2 functions implement hook_language_update()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

field_language_update in drupal/core/modules/field/field.multilingual.inc
Implements hook_language_update().
locale_language_update in drupal/core/modules/locale/locale.module
Implements hook_language_update().
1 invocation of hook_language_update()
language_save in drupal/core/modules/language/language.module
API function to add or update a language.

File

drupal/core/modules/language/language.api.php, line 42
Hooks provided by the Language module.

Code

function hook_language_update($language) {
  example_refresh_permissions();
}