You are here

function currency_filter_currency_exchange_tips in Currency 7.2

Implements hook_filter_info()'s tips callback.

1 string reference to 'currency_filter_currency_exchange_tips'
currency_filter_info in currency/currency.module
Implements hook_filter_info().

File

currency/currency.module, line 638
Provides currency information and allows users to add custom currencies.

Code

function currency_filter_currency_exchange_tips($filter, $format, $long) {
  return t('Use <code>[currency:from:to:amount]</code> to convert an amount of money from one currency to another. The <code>amount</code> parameter is optional and defaults to <code>1</code>. Example: <code>[currency:EUR:USD:100]</code>.');
}