You are here

function _currency_api_filter in Currency 7

Converts currency tokens.

1 string reference to '_currency_api_filter'
currency_api_filter_info in currency_api/currency_api.module
Implements hook_filter_info().

File

currency_api/currency_api.module, line 424
This module provides an API for currency conversion.

Code

function _currency_api_filter($text) {
  return preg_replace_callback('/\\[currency:(.*?)\\]/i', '_currency_api_filter_process', $text);
}