function tableofcontents_filter_settings in Table of Contents 7.2
Return the form used for the filter settings.
Parameters
$format_array The currently selected input $format_array.:
1 string reference to 'tableofcontents_filter_settings'
- _tableofcontents_filter_info in ./
tableofcontents.filters.inc - Implements hook_filter_info().
File
- ./
tableofcontents.module, line 75 - 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($format_array) {
module_load_include('admin.inc', 'tableofcontents');
return _tableofcontents_filter_settings($format_array);
}