You are here

function l10n_update_modules_uninstalled in Localization update 7.2

Same name and namespace in other branches
  1. 7 l10n_update.module \l10n_update_modules_uninstalled()

Implements hook_modules_uninstalled().

Remove data of uninstalled modules from {l10n_update_file} table and rebuild the projects cache.

File

./l10n_update.module, line 343
Download translations from remote localization server.

Code

function l10n_update_modules_uninstalled($modules) {
  $components['module'] = $modules;
  l10n_update_system_remove($components);
}