function flog_uninstall in File logger 7
Same name and namespace in other branches
- 6 flog.install \flog_uninstall()
Implementation of hook_uninstall().
File
- ./
flog.install, line 18 - 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');
}