You are here

function hashtags_filter_info in Hashtags 7

Implements hook_filter_info().

File

./hashtags.module, line 345

Code

function hashtags_filter_info() {
  $filters = array();
  $filters[HASHTAGS_FILTER_NAME] = array(
    'title' => t('Convert Hashtags into links'),
    'description' => t('Turn #words into links which lead to taxonomy terms'),
    'process callback' => '_hashtags_filter_process',
    'cache' => TRUE,
  );
  return $filters;
}