You are here

function footnotes_help in Footnotes 6.2

Same name and namespace in other branches
  1. 8.2 footnotes.module \footnotes_help()
  2. 5.2 footnotes.module \footnotes_help()
  3. 5 footnotes.module \footnotes_help()
  4. 6 footnotes.module \footnotes_help()
  5. 7.3 footnotes.module \footnotes_help()
  6. 7.2 footnotes.module \footnotes_help()

Implementation of hook_help().

File

./footnotes.module, line 22
The Footnotes module is a filter that can be used to insert automatically numbered footnotes into Drupal texts.

Code

function footnotes_help($path, $arg) {
  switch ($path) {
    case 'admin/help#footnotes':

      // This description is shown in the listing at admin/modules.
      return t('Insert automatically numbered footnotes into Drupal texts. Enable the footnotes text filter <a href="@url">here</a>.', array(
        '@url' => url('admin/settings/filters'),
      ));
  }
}