/mnt/web601/b3/14/57451114/htdocs/httpdocs/inc/xtc_format_price.inc.php
<?php
/* -----------------------------------------------------------------------------------------
$Id: xtc_format_price.inc.php 899 2005-04-29 02:40:57Z hhgag $
XT-Commerce - community made shopping
http://www.xt-commerce.com
Copyright (c) 2003 XT-Commerce
-----------------------------------------------------------------------------------------
by Mario Zanier for XTcommerce
based on:
(c) 2003 nextcommerce (xtc_format_price.inc.php,v 1.7 2003/08/19); www.nextcommerce.org
Released under the GNU General Public License
---------------------------------------------------------------------------------------*/
// include needed functions
require_once(DIR_FS_INC . 'xtc_precision.inc.php');
function xtc_format_price ($price_string,$price_special,$calculate_currencies,$show_currencies=1)
{
// calculate currencies
$currencies_query = xtc_db_query("SELECT symbol_left,
symbol_right,
decimal_places,
value
FROM ". TABLE_CURRENCIES ." WHERE
code = '".$_SESSION['currency'] ."'");
$currencies_value=xtc_db_fetch_array($currencies_query);
$currencies_data=array();
$currencies_data=array(
'SYMBOL_LEFT'=>$currencies_value['symbol_left'] ,
'SYMBOL_RIGHT'=>$currencies_value['symbol_right'] ,
'DECIMAL_PLACES'=>$currencies_value['decimal_places'] ,
'VALUE'=> $currencies_value['value']);
if ($calculate_currencies=='true') {
$price_string=$price_string * $currencies_data['VALUE'];
}
// round price
$price_string=xtc_precision($price_string,$currencies_data['DECIMAL_PLACES']);
if ($price_special=='1') {
$currencies_query = xtc_db_query("SELECT symbol_left,
decimal_point,
thousands_point,
value
FROM ". TABLE_CURRENCIES ." WHERE
code = '".$_SESSION['currency'] ."'");
$currencies_value=xtc_db_fetch_array($currencies_query);
$price_string=number_format((double)$price_string,(double)$currencies_data['DECIMAL_PLACES'], $currencies_value['decimal_point'], $currencies_value['thousands_point']);
if ($show_currencies == 1) {
$price_string = $currencies_data['SYMBOL_LEFT']. ' '.$price_string.' '.$currencies_data['SYMBOL_RIGHT'];
}
}
return $price_string;
}
Unexpected error occurred...
Class "main_ORIGIN" not found