You are here

function hansel_uninstall in Hansel breadcrumbs 7

Same name and namespace in other branches
  1. 8 hansel.install \hansel_uninstall()

Implements hook_uninstall().

File

./hansel.install, line 11
Hansel installation file

Code

function hansel_uninstall() {
  variable_del('hansel_breadcrumb_last_item_link');
  variable_del('hansel_breadcrumb_last_item_hide');
  variable_del('hansel_max_item_length');
  variable_del('hansel_trim_on_word_boundary');
  variable_del('hansel_trim_ellipsis');
  variable_del('hansel_max_item_count');
  variable_del('hansel_removed_items_replacement');
  variable_del('hansel_cache');
  variable_del('hansel_set_menu_name');
}