function mimedetect_uninstall in MimeDetect 7
Same name and namespace in other branches
- 5 mimedetect.install \mimedetect_uninstall()
- 6 mimedetect.install \mimedetect_uninstall()
Implements hook_uninstall().
File
- ./
mimedetect.install, line 19 - Install, update, and uninstall functions for the MimeDetect module.
Code
function mimedetect_uninstall() {
variable_del('mimedetect_enable_file_info');
variable_del('mimedetect_enable_file_binary');
variable_del('mimedetect_file_binary');
variable_del('mimedetect_enable_file_extension');
variable_del('mimedetect_magic');
}