function follow_uninstall in Follow 5
Same name and namespace in other branches
- 6 follow.install \follow_uninstall()
- 7.2 follow.install \follow_uninstall()
- 7 follow.install \follow_uninstall()
Implementation of hook_uninstall().
File
- ./
follow.install, line 32 - Follow module's install and uninstall code.
Code
function follow_uninstall() {
// Remove the schema.
db_query('DROP TABLE {follow_links}');
variable_del('follow_user_block_title');
variable_del('follow_site_block_title');
variable_del('follow_site_block_user');
}