function itweak_upload_uninstall in iTweak Upload 7.3
Same name and namespace in other branches
- 6.2 itweak_upload.install \itweak_upload_uninstall()
Implements hook_uninstall().
File
- ./
itweak_upload.install, line 45 - Installation code for iTweakUpload.
Code
function itweak_upload_uninstall() {
//remove system variables
db_delete('variable')
->condition('name', 'itweak_upload_%', 'LIKE')
->execute();
cache_clear_all('variables', 'cache');
}