Projet

Général

Profil

Paste
Télécharger (316 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / hidden_captcha / hidden_captcha.install @ 87dbc3bf

1
<?php
2
// $Id: hidden_captcha.install,v 1.1.2.1 2010/06/29 05:55:33 alexiswilke Exp $
3

    
4
/**
5
 * Implementation of hook_uninstall().
6
 *
7
 * On uninstall: remove module variables and clear variable cache
8
 */
9
function hidden_captcha_uninstall() {
10
  db_query("DELETE FROM {variable} WHERE name LIKE 'hidden_captcha_%%'");
11
}