function user_modules_uninstalled

Implements hook_modules_uninstalled().

File

drupal/modules/user/user.module, line 3989
Enables the user registration and login system.

Code

function user_modules_uninstalled($modules) {
  db_delete('role_permission')
    ->condition('module', $modules, 'IN')
    ->execute();
}