You are here

function toc_filter_uninstall in TOC filter 6

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

Implementation of hook_uninstall().

File

./toc_filter.install, line 10
Installation information for the 'Table of contents filter' module.

Code

function toc_filter_uninstall() {
  variable_del('toc_filter_header_tag');
  variable_del('toc_filter_number_default_title');
  variable_del('toc_filter_bullet_default_title');
  variable_del('toc_filter_faq_default_title');
  variable_del('toc_filter_jump_menu_default_title');
  variable_del('toc_filter_smooth_scroll');
  variable_del('toc_filter_smooth_scroll_duration');
}