d7_to_d10_migration/drupal7/web/modules/syslog/syslog.install
Mauricio Dinarte c5e731d8ae Initial commit
2024-12-04 10:11:27 -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');
}