You are here

function quote_help in Quote 5

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

Implementation of hook_help().

File

./quote.module, line 6

Code

function quote_help($section) {
  switch ($section) {
    case 'admin/settings/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/settings/filters'),
        '!project-page' => url('http://drupal.org/project/quote', NULL, NULL, TRUE),
      ));
  }
}