You are here

function flog_uninstall in File logger 6

Same name and namespace in other branches
  1. 7 flog.install \flog_uninstall()

Implementation of hook_uninstall().

File

./flog.install, line 20
flog: Dump variables to a file.

Code

function flog_uninstall() {
  variable_del('flog_enabled');
  variable_del('flog_path');
  variable_del('flog_file');
  variable_del('flog_date');
}