function system_test_module_preinstall

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/system_test/system_test.module \system_test_module_preinstall()
  2. 8.9.x core/modules/system/tests/modules/system_test/system_test.module \system_test_module_preinstall()
  3. 10 core/modules/system/tests/modules/system_test/system_test.module \system_test_module_preinstall()

Implements hook_module_preinstall().

File

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

Code

function system_test_module_preinstall($module, bool $is_syncing) {
    \Drupal::messenger()->addStatus('system_test_preinstall_module called');
    \Drupal::state()->set('system_test_preinstall_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_preinstall_module_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_preinstall_module_syncing_param', $is_syncing);
}

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