You are here

function quote_help in Quote 7

Same name and namespace in other branches
  1. 8.2 quote.module \quote_help()
  2. 5 quote.module \quote_help()
  3. 6.2 quote.admin.inc \quote_help()
  4. 6 quote.admin.inc \quote_help()
  5. 7.2 quote.module \quote_help()

Implements hook_help().

File

./quote.module, line 12
The quote module provides a filter and appropriate links that allow users to quote nodes and other comments in their own comments.

Code

function quote_help($path, $arg) {
  if ($path == 'admin/config/content/quote') {
    return t('<p>The quote filter allows users to quote other posts in their
comments. Besides the following settings, the quote filter will need to be
enabled for each <a href="!input-format">input format</a> (as required). Please
make sure that the quote filter is arranged <em>after</em> any HTML filters and
<em>before</em> the line break filter. For more information, please visit the
<a href="!project-page">project page</a>.</p>', array(
      '!input-format' => url('admin/config/content/formats'),
      '!project-page' => url('http://drupal.org/project/quote'),
    ));
  }
}