function jsonlog_uninstall in JSONlog 7
Same name and namespace in other branches
- 8.2 jsonlog.install \jsonlog_uninstall()
- 8 jsonlog.install \jsonlog_uninstall()
- 7.2 jsonlog.install \jsonlog_uninstall()
- 3.x jsonlog.install \jsonlog_uninstall()
Implements hook_uninstall().
File
- ./
jsonlog.install, line 10 - Install, update and uninstall functions for the JSONlog module.
Code
function jsonlog_uninstall() {
// The equivalent server environment vars are named 'drupal_'....
variable_del('jsonlog_severity_threshold');
variable_del('jsonlog_truncate');
variable_del('jsonlog_siteid');
variable_del('jsonlog_file');
variable_del('jsonlog_tags');
}