You are here

system_module_test.install in Drupal 8

Install, update, and uninstall functions for the System test module.

File

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

/**
 * @file
 * Install, update, and uninstall functions for the System test module.
 */
use Drupal\Core\Cache\Cache;

/**
 * Implements hook_install().
 */
function system_module_test_install() {
  Cache::invalidateTags([
    'rendered',
  ]);
}

Functions

Namesort descending Description
system_module_test_install Implements hook_install().