function syslog_uninstall

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/syslog/syslog.install \syslog_uninstall()

Implements hook_uninstall().

Archivo

drupal-7.x/modules/syslog/syslog.install, line 11
Install, update and uninstall functions for the syslog module.

Código

function syslog_uninstall() {
  variable_del('syslog_identity');
  variable_del('syslog_facility');
  variable_del('syslog_format');
}