mollom_test_server.install 277 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * Installation functionality for Mollom testing module.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function mollom_test_server_uninstall() {
  10. db_delete('variable')
  11. ->condition('name', db_like('mollom_test_server') . '%', 'LIKE')
  12. ->execute();
  13. }