You are here

function node_noindex_uninstall in Node Noindex 7

Same name and namespace in other branches
  1. 6 node_noindex.install \node_noindex_uninstall()

Implements hook_uninstall().

File

./node_noindex.install, line 16
Install, update and uninstall functions for the node_noindex module.

Code

function node_noindex_uninstall() {

  // Delete my variables.
  db_query("DELETE FROM {variable} WHERE name LIKE 'node_noindex\\_%'");
}