You are here

function responsive_menus_uninstall in Responsive Menus 7

Implements hook_uninstall().

File

./responsive_menus.install, line 19
Install hooks for Responsive Menus.

Code

function responsive_menus_uninstall() {
  $variables = db_query("SELECT name FROM {variable} WHERE name LIKE :name", array(
    ':name' => 'responsive_menus' . '%',
  ))
    ->fetchAll();
  foreach ($variables as $variable) {
    variable_del($variable->name);
  }
}