Definition

format_currency($price)
ecommerce-5--4/ec_common/ec_common.module, line 238

Description

Format the price according to payment_settings() config options.

Code

<?php
function format_currency($price) {
  $price = number_format((float) $price,
    variable_get('payment_decimal_places', 2),
    variable_get('payment_decimal', '.'),
    variable_get('payment_thousands', ','));
  return (variable_get('payment_symbol_position', 1) == 1) ?
    variable_get('payment_symbol', '$') . $price :
    $price . variable_get('payment_symbol', '$');
}
?>