You are here

function vppn_uninstall in View Permission Per Node 7

Implements hook_uninstall().

File

./vppn.install, line 40
Installation for the VPPN module.

Code

function vppn_uninstall() {

  // Delete any defined variables.
  db_delete('variable')
    ->condition('name', 'vppn_node_%', 'LIKE')
    ->execute();
}