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