function itweak_upload_uninstall in iTweak Upload 6.2
Same name and namespace in other branches
- 7.3 itweak_upload.install \itweak_upload_uninstall()
Implementation of hook_uninstall()
File
- ./
itweak_upload.install, line 201 - Installation code for iTweakUpload.
Code
function itweak_upload_uninstall() {
//remove system variables
db_query("DELETE FROM {variable} WHERE name LIKE 'itweak_upload_%'");
cache_clear_all('variables', 'cache');
}