function system_test_modules_uninstalled

Same name in other branches
  1. 7.x modules/simpletest/tests/system_test.module \system_test_modules_uninstalled()
  2. 9 core/modules/system/tests/modules/system_test/system_test.module \system_test_modules_uninstalled()
  3. 8.9.x core/modules/system/tests/modules/system_test/system_test.module \system_test_modules_uninstalled()
  4. 11.x core/modules/system/tests/modules/system_test/system_test.module \system_test_modules_uninstalled()

Implements hook_modules_uninstalled().

File

core/modules/system/tests/modules/system_test/system_test.module, line 38

Code

function system_test_modules_uninstalled($modules, $is_syncing) {
    if (\Drupal::state()->get('system_test.verbose_module_hooks')) {
        foreach ($modules as $module) {
            \Drupal::messenger()->addStatus(t('hook_modules_uninstalled fired for @module', [
                '@module' => $module,
            ]));
        }
    }
    // Save the config.installer isSyncing() value to state to check that it is
    // correctly set when installing module during config import.
    \Drupal::state()->set('system_test_modules_uninstalled_config_installer_syncing', \Drupal::service('config.installer')->isSyncing());
    // Save the $is_syncing parameter value to state to check that it is correctly
    // set when installing module during config import.
    \Drupal::state()->set('system_test_modules_uninstalled_syncing_param', $is_syncing);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.