You are here

function feedback_uninstall in Feedback 5

Same name and namespace in other branches
  1. 5.2 feedback.install \feedback_uninstall()
  2. 6.2 feedback.install \feedback_uninstall()
  3. 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_%%'");
}