function quote_filter_info in Quote 7
Implements hook_filter_info().
File
- ./
quote.module, line 156 - 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_filter_info() {
$filters['quote'] = array(
'title' => t('Converts [quote] tags into <div> tags. Must usually apply after HTML filters unless an exception is made for <div> tags.'),
'process callback' => '_quote_filter_process',
'tips callback' => 'quote_filter_tips',
);
return $filters;
}