You are here

function locale_module_preuninstall in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/locale/locale.module \locale_module_preuninstall()
  2. 10 core/modules/locale/locale.module \locale_module_preuninstall()

Implements hook_module_preuninstall().

File

core/modules/locale/locale.module, line 329
Enables the translation of the user interface to languages other than English.

Code

function locale_module_preuninstall($module) {
  $components['module'] = [
    $module,
  ];
  locale_system_remove($components);
}