X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_wernis.php;h=ef6d111b5ebba5056fdda63c144931f225e75571;hp=7650ae1bad076f26bad92b0ef7176ed5efd9582c;hb=fb7120ffa230b62b54895bcf95952e1cf30f8594;hpb=33a744d80e9c5ec1c13e8f643143146166975e9b diff --git a/inc/modules/admin/what-config_wernis.php b/inc/modules/admin/what-config_wernis.php index 7650ae1bad..ef6d111b5e 100644 --- a/inc/modules/admin/what-config_wernis.php +++ b/inc/modules/admin/what-config_wernis.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Auszahlungensarten editieren * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -32,35 +37,74 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) -{ +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } + // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); -if (isset($_POST['ok'])) { - // First merge temporary the new API data into config - $CONFIG = array_merge($CONFIG, $_POST); +if (IS_FORM_SENT()) { + // First merge temporarily the new API data into the current config + mergeConfig(REQUEST_POST_ARRAY()); - // Let's test the API first (hold your horses here, cowboy! Thanks. :) ) + // Let's test the API first (hold your horses here, cowboy! Thank you. :) ) if (WERNIS_TEST_API()) { + // Revert german commata + foreach (array('payout_factor', 'withdraw_factor', 'payout_fee_percent', 'withdraw_fee_percent') as $revert) { + REQUEST_SET_POST('wernis_'.$revert, REVERT_COMMA(REQUEST_POST('wernis_'.$revert))); + } // END - if + + // Hash the password and remove clear-text + REQUEST_SET_POST('wernis_pass_md5', md5(REQUEST_POST('wernis_pass'))); + REQUEST_UNSET_POST(('wernis_pass')); + // Save settings - ADMIN_SAVE_SETTINGS($_POST, "_config", "config='0'"); + ADMIN_SAVE_SETTINGS_POST(); } else { // Failed to test the API! - LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_ERROR_MESSAGE()); + LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE()); } } else { // Prepare data for template output $content = array( - 'min_amount' => $CONFIG['wernis_min_amount'], - 'api_id' => $CONFIG['wernis_api_id'], - 'api_md5' => $CONFIG['wernis_api_md5'], - 'api_url' => $CONFIG['wernis_api_url'] + 'min_payout' => getConfig(('wernis_min_payout')), + 'min_withdraw' => getConfig(('wernis_min_withdraw')), + 'api_id' => getConfig(('wernis_api_id')), + 'api_md5' => getConfig('wernis_api_md5'), + 'api_url' => getConfig('wernis_api_url'), + 'refid' => getConfig(('wernis_refid')), + 'payout_factor' => TRANSLATE_COMMA(getConfig('wernis_payout_factor')), + 'withdraw_factor' => TRANSLATE_COMMA(getConfig('wernis_withdraw_factor')), + 'payout_fee_percent' => TRANSLATE_COMMA(getConfig('wernis_payout_fee_percent')), + 'withdraw_fee_percent' => TRANSLATE_COMMA(getConfig('wernis_withdraw_fee_percent')), + 'payout_fee_fix' => getConfig(('wernis_payout_fee_fix')), + 'withdraw_fee_fix' => getConfig(('wernis_withdraw_fee_fix')) ); + // Prepare payout Y/N selection + if (getConfig('wernis_payout_active') == "Y") { + // Payout allowed + define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', " checked=\"checked\""); + define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ""); + } else { + // Payout disabled + define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', ""); + define('__CFG_WERNIS_PAYOUT_ACTIVE_N', " checked=\"checked\""); + } + + // Prepare withdraw Y/N selection + if (getConfig('wernis_withdraw_active') == "Y") { + // Payout allowed + define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', " checked=\"checked\""); + define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ""); + } else { + // Payout disabled + define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ""); + define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', " checked=\"checked\""); + } + // Load template LOAD_TEMPLATE("admin_config_wernis", false, $content); }