You are here

function top_buttons_uninstall in Util 6.3

Same name and namespace in other branches
  1. 7 contribs/top_buttons/top_buttons.install \top_buttons_uninstall()

Implements hook_uninstall(); Remove module variables.

File

contribs/top_buttons/top_buttons.install, line 20
Install code for Top Buttons add-on to Util.

Code

function top_buttons_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'top_buttons_%'");
}