function feedback_uninstall in Feedback 5
Same name and namespace in other branches
- 5.2 feedback.install \feedback_uninstall()
- 6.2 feedback.install \feedback_uninstall()
- 7.2 feedback.install \feedback_uninstall()
Implementation of hook_uninstall().
File
- ./
feedback.install, line 31
Code
function feedback_uninstall() {
db_query("DROP TABLE {feedback_pages}");
db_query("DELETE FROM {variable} WHERE name LIKE 'feedback_%%'");
}