mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2024-11-14 20:23:26 +00:00
15 lines
266 B
Text
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');
|
|
}
|