You are here

function disable_breadcrumbs_uninstall in Disable breadcrumbs 6

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

Implementation of hook_uninstall().

File

./disable_breadcrumbs.install, line 42
Install file for the disable breadcrumbs module

Code

function disable_breadcrumbs_uninstall() {
  drupal_uninstall_schema('disable_breadcrumbs');
  variable_del('disable_breadcrumbs_node_types');
  variable_del('disable_breadcrumbs_node_types_all');
}