You are here

function logs_http_uninstall in Logs HTTP 7

Same name and namespace in other branches
  1. 8 logs_http.install \logs_http_uninstall()

Implements hook_uninstall().

File

./logs_http.install, line 11
Install, update and uninstall functions for the Logs HTTP module.

Code

function logs_http_uninstall() {
  variable_del('logs_http_url');
  variable_del('logs_http_enabled');
  variable_del('logs_severity_level');
  variable_del('logs_http_uuid');
}