twitter_profile_widget.install in Twitter Profile Widget 6
Same filename and directory in other branches
Uninstall function for the twitter profile widget module.
File
twitter_profile_widget.installView source
<?php
/**
* @file
* Uninstall function for the twitter profile widget module.
*/
/**
* Implementation of hook_uninstall().
*/
function twitter_profile_widget_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'twitter_profile_widget_%'");
cache_clear_all('variables', 'cache');
}
Functions
Name | Description |
---|---|
twitter_profile_widget_uninstall | Implementation of hook_uninstall(). |