function quote_help in Quote 6
Same name and namespace in other branches
- 8.2 quote.module \quote_help()
- 5 quote.module \quote_help()
- 6.2 quote.admin.inc \quote_help()
- 7.2 quote.module \quote_help()
- 7 quote.module \quote_help()
Implementation of hook_help().
File
- ./
quote.admin.inc, line 11 - Admin page callbacks for the quote module.
Code
function quote_help($path, $arg) {
switch ($path) {
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', array(
'absolute' => TRUE,
)),
));
}
}