You are here

function private_uninstall in Private 7.2

Same name and namespace in other branches
  1. 5 private.install \private_uninstall()
  2. 6 private.install \private_uninstall()
  3. 7 private.install \private_uninstall()

Implements hook_uninstall().

File

./private.install, line 51
Install, update and uninstall functions for the private module.

Code

function private_uninstall() {

  // Remove variables.
  $node_types = array_keys(node_type_get_types());
  foreach ($node_types as $node_type) {
    variable_del('private_' . $node_type);
  }
}