You are here

function page_cache_form_test_install in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/page_cache/tests/modules/page_cache_form_test.install \page_cache_form_test_install()
  2. 9 core/modules/page_cache/tests/modules/page_cache_form_test.install \page_cache_form_test_install()

Implements hook_install().

File

core/modules/page_cache/tests/modules/page_cache_form_test.install, line 11
Install hooks for page_cache_form_test.

Code

function page_cache_form_test_install() {

  // Set an explicit module weight, to ensure that the form alter hook is
  // always called after page_cache_form_alter().
  module_set_weight('page_cache_form_test', 10);
}