You are here

function module_handler_test_multiple_child_install in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple_child/module_handler_test_multiple_child.install \module_handler_test_multiple_child_install()
  2. 9 core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple_child/module_handler_test_multiple_child.install \module_handler_test_multiple_child_install()

Implements hook_install().

File

core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple_child/module_handler_test_multiple_child.install, line 14
Utility functions for the module_handler_test_multiple_child module.

Code

function module_handler_test_multiple_child_install() {

  // Set weight of module.
  module_set_weight('module_handler_test_multiple_child', 1);
}