Project

General

Profile

Paste
Download (266 Bytes) Statistics
| Branch: | Revision:

root / drupal7 / modules / syslog / syslog.install @ 27e02aed

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
}