You are here

function _toc_filter_settings_callback in TOC filter 6

Same name and namespace in other branches
  1. 7 toc_filter.module \_toc_filter_settings_callback()

TOC filter settings callback.

1 call to _toc_filter_settings_callback()
toc_filter_filter in ./toc_filter.module
Implementation of hook_filter().

File

./toc_filter.module, line 184
Converts header tags into a linked table of contents.

Code

function _toc_filter_settings_callback() {
  $form = array();
  $form['toc_filter_settings'] = array(
    '#type' => 'fieldset',
    '#title' => t('TOC filter'),
    '#description' => t('To configure this filter, please goto the global <a href="@href">TOC filter site configuration form</a>.', array(
      '@href' => url('admin/settings/toc_filter'),
    )),
    '#collapsible' => TRUE,
    '#collapsed' => FALSE,
  );
  return $form;
}