You are here

function override_node_options_uninstall in Override Node Options 5

Same name and namespace in other branches
  1. 8 override_node_options.install \override_node_options_uninstall()
  2. 6 override_node_options.install \override_node_options_uninstall()

Implements hook_uninstall().

File

./override_node_options.install, line 11
Install, update and uninstall functions for the override_node_options module.

Code

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

  // TODO we could be leaving permissions in the permission table, but they're tricky to remove
}