Beispiel #1
0
function priceFormat($price, $dispNull = true)
{
    trigger_error('priceFormat() is deprecated. Please use Tax::priceFormat(float $price [, bool $display_null]) instead.', E_USER_NOTICE);
    $tax = new Tax();
    return $tax->priceFormat($price, $dispNull);
}