41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
$Id: oos_define.php,v 1.2 2007/10/29 18:21:06 r23 Exp $
|
|
|
|
MyOOS [Shopsystem]
|
|
https://www.oos-shop.de
|
|
|
|
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Based on:
|
|
|
|
BruttoAdmin V1.1 for OSC http://www.oscommerce.com
|
|
|
|
Images_resize Vs 1.3 for OSC http://www.oscommerce.com
|
|
Copyright 2003 Henri Schmidhuber
|
|
mailto: info@in-solution.de http://www.in-solution.de
|
|
|
|
osCommerce 2.2 Milestone 1
|
|
Copyright (c) osCommerce 2003
|
|
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
/** ensure this file is being included by a parent file */
|
|
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
|
|
|
if(!defined('MYOOS_INCLUDE_PATH')) {
|
|
define('MYOOS_INCLUDE_PATH', OOS_ABSOLUTE_PATH);
|
|
}
|
|
|
|
// Define how do we update currency exchange rates
|
|
// Possible values are 'oanda' 'xe' or ''
|
|
define('CURRENCY_SERVER_PRIMARY', 'oanda');
|
|
define('CURRENCY_SERVER_BACKUP', 'xe');
|
|
|