You are here

function amazon_filter_info in Amazon Product Advertisement API 7

Same name and namespace in other branches
  1. 7.2 amazon_filter/amazon_filter.module \amazon_filter_info()

Implements hook_filter_info().

File

amazon_filter/amazon_filter.module, line 38

Code

function amazon_filter_info() {
  $filters['amazon'] = array(
    'title' => t('Amazon filter'),
    'description' => t('Provides access to many types of Amazon data. Simplest usage: [amazon:ASIN:inline], for example [amazon:0596515804:inline].'),
    'process callback' => '_amazon_filter_process_text',
    'tips callback' => '_amazon_filter_tips',
  );
  return $filters;
}