locale_test.install

Install, update and uninstall functions for the locale_test module.

File

drupal/core/modules/locale/tests/modules/locale_test/locale_test.install
View source
<?php

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

/**
 * Implements hook_uninstall().
 */
function locale_test_uninstall() {

  // Clear variables.
  state()
    ->delete('locale_translation_test_system_info_alter');
  state()
    ->delete('locale_translation_test_projects');
}

Functions

Namesort descending Description
locale_test_uninstall Implements hook_uninstall().