syslog.install

  1. 7.x drupal-7.x/modules/syslog/syslog.install
  2. 6.x drupal-6.x/modules/syslog/syslog.install

Install, update and uninstall functions for the syslog module.

File

drupal-7.x/modules/syslog/syslog.install
View source
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the syslog module.
  5. */
  6. /**
  7. * Implements hook_uninstall().
  8. */
  9. function syslog_uninstall() {
  10. variable_del('syslog_identity');
  11. variable_del('syslog_facility');
  12. variable_del('syslog_format');
  13. }