You are here

function protected_node_uninstall in Protected Node 7

Same name and namespace in other branches
  1. 5 protected_node.install \protected_node_uninstall()
  2. 6 protected_node.install \protected_node_uninstall()
  3. 1.0.x protected_node.install \protected_node_uninstall()

Implements hook_uninstall().

File

./protected_node.install, line 84
Install, update and uninstall functions for the protected_node module.

Code

function protected_node_uninstall() {
  db_delete('variable')
    ->condition('name', 'protected_node_%%', 'LIKE')
    ->execute();
}