Some other code.

  1. <?php
  2.  
  3. /* $Id: recaptcha.install,v 1.2.4.2.2.2 2007/09/13 09:12:40 robloach Exp $ */
  4.  
  5. /**
  6.  *
  7.  * @file Provides install, updated, and uninstall functions for recaptcha.
  8.  *
  9.  */
  10.  
  11.  
  12. /**
  13.  * Implementation of hook_uninstall().
  14.  */
  15. function recaptcha_uninstall() {
  16.   // Delete all the recaptcha variables and then clear the variable cache  
  17.   db_query("delete from {variable} where name like 'recaptcha_%'");
  18.   cache_clear_all('variables', 'cache');
  19. }
  20.  
  21. //Yes.