You are here

function tableofcontents_filter_settings_submit in Table of Contents 7.2

1 string reference to 'tableofcontents_filter_settings_submit'
tableofcontents_form_alter in ./tableofcontents.module
Add a field in nodes so one can mark the node as using a TOC without the need for the [toc] tag.

File

./tableofcontents.module, line 80
This is a filter module to generate a collapsible jquery enabled mediawiki style table of contents based on <h[1-6]> tags. Transforms header tags into named anchors.

Code

function tableofcontents_filter_settings_submit($form, &$form_state) {
  module_load_include('admin.inc', 'tableofcontents');
  return _tableofcontents_filter_settings_submit($form, $form_state);
}