[MOVED] Coin Classes into own folder

This commit is contained in:
Sebastian Grewe 2014-03-17 15:19:09 +01:00
parent 1583877206
commit 5fd4085a15
4 changed files with 3 additions and 6 deletions

View File

@ -15,12 +15,12 @@ require_once(INCLUDE_DIR . '/config/error_codes.inc.php');
// We need to load these first
require_once(CLASS_DIR . '/base.class.php');
require_once(CLASS_DIR . '/coin_base.class.php');
require_once(CLASS_DIR . '/coins/coin_base.class.php');
require_once(CLASS_DIR . '/setting.class.php');
// Now decide on which coin class to load and instantiate
if (file_exists(CLASS_DIR . '/coin_' . $config['algorithm'] . '.class.php')) {
require_once(CLASS_DIR . '/coin_' . $config['algorithm'] . '.class.php');
if (file_exists(CLASS_DIR . '/coins/coin_' . $config['algorithm'] . '.class.php')) {
require_once(CLASS_DIR . '/coins/coin_' . $config['algorithm'] . '.class.php');
$coin = new Coin();
$coin->setConfig($config);
} else {
@ -49,9 +49,6 @@ require_once(CLASS_DIR . '/template.class.php');
// Load smarty now that we have our theme defined
require_once(INCLUDE_DIR . '/smarty.inc.php');
// Load our base coin class
// require_once(CLASS_DIR . '/coin_base.class.php');
// Load everything else in proper order
require_once(CLASS_DIR . '/mail.class.php');
require_once(CLASS_DIR . '/tokentype.class.php');