Initial commit

This commit is contained in:
Mauricio Dinarte 2024-07-22 21:38:34 -06:00
commit 1664d5cfe6
2772 changed files with 600692 additions and 0 deletions
drupal7/web/modules/syslog

View file

@ -0,0 +1,15 @@
<?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');
}