1 filter_example.module _filter_example_information()

Simply returns a little bit of information about the example.

Related topics

File

modules/examples/filter_example/filter_example.module, line 55
Hook implementations for the Filter Example module.

Code

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