Simply returns a little bit of information about the example.

Related topics

1 string reference to '_filter_example_information'
filter_example_menu in filter_example/filter_example.module
Implements hook_menu().

File

filter_example/filter_example.module, line 65
Module file for filter_example.

Code

function _filter_example_information() {
  return t("<p>This example provides two filters.</p><p>Foo Filter replaces\n    'foo' with a configurable replacement.</p><p>Time Tag replaces the string\n    '&lt;time /&gt;' with the current time.</p><p>To use these filters, go to !link and\n    configure an input format, or create a new one.</p>", array(
    '!link' => l(t('admin/config/content/formats'), 'admin/config/content/formats'),
  ));
}