You are here

function currency_filter_currency_localize_process in Currency 7.2

Implements hook_filter_info()'s process callback.

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

File

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

Code

function currency_filter_currency_localize_process($text, $filter, $format, $langcode, $cache, $cache_id) {
  return preg_replace_callback('/\\[currency-localize:([a-z]{3}):(.+?)\\]/i', '_currency_filter_currency_localize_process', $text);
}