d7_to_d10_migration/drupal7/web/modules/syslog/syslog.install

16 lines
266 B
Text
Raw Normal View History

2024-07-23 03:38:34 +00:00
<?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');
}