| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/admin/includes/functions/ |
Upload File : |
<?php
/* --------------------------------------------------------------
localization.php 2018-09-18
Gambio GmbH
http://www.gambio.de
Copyright (c) 2018 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
IMPORTANT! THIS FILE IS DEPRECATED AND WILL BE REPLACED IN THE FUTURE.
MODIFY IT ONLY FOR FIXES. DO NOT APPEND IT WITH NEW FEATURES, USE THE
NEW GX-ENGINE LIBRARIES INSTEAD.
--------------------------------------------------------------
*/
/* --------------------------------------------------------------
$Id: localization.php 950 2005-05-14 16:45:21Z mz $
XT-Commerce - community made shopping
http://www.xt-commerce.com
Copyright (c) 2003 XT-Commerce
--------------------------------------------------------------
based on:
(c) 2000-2001 The Exchange Project (earlier name of osCommerce)
(c) 2002-2003 osCommerce(localization.php,v 1.12 2003/06/25); www.oscommerce.com
(c) 2003 nextcommerce (localization.php,v 1.4 2003/08/14); www.nextcommerce.org
Released under the GNU General Public License
--------------------------------------------------------------*/
defined( '_VALID_XTC' ) or die( 'Direct Access to this location is not allowed.' );
function getCurrentRate($to, $base = DEFAULT_CURRENCY)
{
// Currency converter. https://exchangeratesapi.io/
$exchangeRatesApi = 'https://api.exchangeratesapi.io/latest?base=' . $base;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $exchangeRatesApi);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$jsonResponse = json_decode(curl_exec($ch), true);
return $jsonResponse['rates'][$to] ?: false;
}