l10n_update_test.install 310 B

123456789101112131415
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the l10n_update_test module.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function l10n_update_test_uninstall() {
  10. // Clear variables.
  11. variable_del('l10n_update_test_system_info_alter');
  12. variable_del('l10n_update_test_projects_alter');
  13. }