You are here

function currency_filter_currency_localize_tips in Currency 7.2

Implements hook_filter_info()'s tips callback.

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

File

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

Code

function currency_filter_currency_localize_tips($filter, $format, $long) {
  return t('Use <code>[currency-localize:<strong>currency-code</strong>:<strong>amount</strong>]</code> to localize an amount of money. The <code>currency-code</code> and <code>amount</code> parameters are the ISO 4217 currency code and the actual amount to display. Example: <code>[currency-localize:EUR:99.95]</code>.');
}