X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_wernis.php;h=d112c9565b1a31c6fca263fd2327cd119e92d1ca;hb=1355d2c0b29510dbd407f9cde9f41a5ac02d01fa;hp=87518851f97dd0aba49f6461538337b60da1ddf9;hpb=b7aada7890a3c7d1c1da4d2b36d8d7683fa61c06;p=mailer.git diff --git a/inc/modules/admin/what-config_wernis.php b/inc/modules/admin/what-config_wernis.php index 87518851f9..d112c9565b 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 * @@ -33,14 +38,14 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); -if (IS_FORM_SENT()) { +if (isFormSent()) { // First merge temporarily the new API data into the current config mergeConfig(REQUEST_POST_ARRAY()); @@ -48,7 +53,7 @@ if (IS_FORM_SENT()) { 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))); + REQUEST_SET_POST('wernis_'.$revert, convertCommaToDot(REQUEST_POST('wernis_'.$revert))); } // END - if // Hash the password and remove clear-text @@ -59,7 +64,7 @@ if (IS_FORM_SENT()) { ADMIN_SAVE_SETTINGS_POST(); } else { // Failed to test the API! - LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE()); + LOAD_TEMPLATE('admin_settings_saved', false, GET_WERNIS_ERROR_MESSAGE()); } } else { // Prepare data for template output @@ -70,34 +75,34 @@ if (IS_FORM_SENT()) { '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_factor' => translateComma(getConfig('wernis_payout_factor')), + 'withdraw_factor' => translateComma(getConfig('wernis_withdraw_factor')), + 'payout_fee_percent' => translateComma(getConfig('wernis_payout_fee_percent')), + 'withdraw_fee_percent' => translateComma(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") { + if (getConfig('wernis_payout_active') == 'Y') { // Payout allowed - define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', " checked=\"checked\""); - define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ""); + 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\""); + 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") { + if (getConfig('wernis_withdraw_active') == 'Y') { // Payout allowed - define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', " checked=\"checked\""); - define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ""); + 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\""); + define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ''); + define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ' checked="checked"'); } // Load template