Projet

Général

Profil

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

root / drupal7 / modules / syslog / syslog.install @ c7768a53

1
<?php
2

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

    
8
/**
9
 * Implements hook_uninstall().
10
 */
11
function syslog_uninstall() {
12
  variable_del('syslog_identity');
13
  variable_del('syslog_facility');
14
  variable_del('syslog_format');
15
}