You are here

module_handler_test_multiple.install in Drupal 10

Install, update and uninstall functions for the module_handler_test_multiple module.

File

core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the module_handler_test_multiple module.
 */

/**
 * Implements hook_install().
 */
function module_handler_test_multiple_install() {

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

Functions