You are here

function name_uninstall in Name Field 6

Same name and namespace in other branches
  1. 7 name.install \name_uninstall()

Implementation of hook_uninstall().

File

./name.install, line 57
Standard installation functions for name.

Code

function name_uninstall() {
  drupal_load('module', 'content');
  content_notify('uninstall', 'name');
  variable_del('name_settings');
  drupal_uninstall_schema('name');
}