Projet

Général

Profil

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

root / drupal7 / sites / all / modules / hidden_captcha / hidden_captcha.install @ 99781f3b

1
<?php
2

    
3
/**
4
 * @file
5
 * Install, update, and uninstall functions for the Hidden CAPTCHA module.
6
 */
7

    
8
/**
9
 * Implements hook_uninstall().
10
 *
11
 * On uninstall: Remove module variables and clear variable cache.
12
 */
13
function hidden_captcha_uninstall() {
14
  db_query("DELETE FROM {variable} WHERE name LIKE 'hidden_captcha_%%'");
15
}