d7_to_d10_migration/drupal7/web/modules/syslog/syslog.install
Mauricio Dinarte 1664d5cfe6 Initial commit
2024-07-22 21:38:34 -06:00

15 lines
266 B
Text

<?php
/**
* @file
* Install, update and uninstall functions for the syslog module.
*/
/**
* Implements hook_uninstall().
*/
function syslog_uninstall() {
variable_del('syslog_identity');
variable_del('syslog_facility');
variable_del('syslog_format');
}