X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=c39aac612ab26d497421c79a371aaa8c112aec78;hb=9d527cf8f2d95f7f58a42cb159f0ffc732f49d39;hp=60538f841108b622e23cb8aa642e8b730390b829;hpb=56156f6c4392510cdbe0eb4f2ccefc23b43e2672;p=mailer.git diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index 60538f8411..c39aac612a 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Einstellen der Turbo-Klick-Verguetungen * * -------------------------------------------------------------------- * - * * + * $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 * @@ -40,33 +45,34 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { // Add description as navigation point ADD_DESCR("admin", __FILE__); -if (isset($_POST['ok'])) { +if (IS_FORM_SENT()) { // Replace german decimal commas to computer decimal dots - $_POST['login_bonus'] = REVERT_COMMA($_POST['login_bonus'] ); - $_POST['turbo_bonus'] = REVERT_COMMA($_POST['turbo_bonus'] ); - $_POST['bonus_ref'] = REVERT_COMMA($_POST['bonus_ref'] ); - $_POST['bonus_order'] = REVERT_COMMA($_POST['bonus_order'] ); - $_POST['bonus_notify_points'] = REVERT_COMMA($_POST['bonus_notify_points']); + REQUEST_POST('login_bonus') = REVERT_COMMA(REQUEST_POST('login_bonus') ); + REQUEST_POST('turbo_bonus') = REVERT_COMMA(REQUEST_POST('turbo_bonus') ); + REQUEST_POST('bonus_ref') = REVERT_COMMA(REQUEST_POST('bonus_ref') ); + REQUEST_POST('bonus_order') = REVERT_COMMA(REQUEST_POST('bonus_order') ); + REQUEST_SET_POST('bonus_notify_points', REVERT_COMMA(REQUEST_POST('bonus_notify_points'))); // Generate string for saving ranks - $_POST['turbo_rates'] = ""; $RATES = array(); - foreach ($_POST['rate'] as $rate) { + REQUEST_SET_POST('turbo_rates', ""); + $RATES = array(); + foreach (REQUEST_POST('rate') as $rate) { $rate = trim(REVERT_COMMA($rate)); - if (isset($rate)) $RATES[] = $rate; + if (!empty($rate)) $RATES[] = $rate; } - $_POST['turbo_rates'] = trim(implode(";", $RATES)); - unset($_POST['rate']); + REQUEST_SET_POST('turbo_rates', trim(implode(";", $RATES))); + REQUEST_UNSET_POST(('rate')); // Automatically calculate bonus points for ranks 2 and 3 when not set - if (empty($_POST['turbo_rates'])) $_POST['turbo_rates'] = "".round(getConfig('turbo_bonus') / 2).";".round(getConfig('turbo_bonus') / 4).""; + if (!REQUEST_ISSET_POST(('turbo_rates'))) REQUEST_SET_POST('turbo_rates', "".round(getConfig('turbo_bonus') / 2).";".round(getConfig('turbo_bonus') / 4).""); // Save data - ADMIN_SAVE_SETTINGS($_POST); + ADMIN_SAVE_SETTINGS_POST(); // Remember new settings - $_CONFIG['bonus_active'] = $_POST['bonus_active']; - $_CONFIG['bonus_en_notify'] = $_POST['bonus_en_notify']; - $_CONFIG['bonus_di_notify'] = $_POST['bonus_di_notify']; + setConfigEntry('bonus_active' , REQUEST_POST('bonus_active')); + setConfigEntry('bonus_en_notify', REQUEST_POST('bonus_en_notify')); + setConfigEntry('bonus_di_notify', REQUEST_POST('bonus_di_notify')); } else { // Prepare contants for the template define('__LOGIN_VALUE' , TRANSLATE_COMMA(getConfig('login_bonus') , false)); @@ -94,7 +100,7 @@ if (isset($_POST['ok'])) { foreach ($RANKS as $k => $rate) { if (!empty($rate)) { // Print only when something is in - $OUT .= "
  •  
    (".POINTS.")\n"; + $OUT .= "
  •  
    ({!POINTS!})\n"; } $cnt++; } @@ -104,7 +110,7 @@ if (isset($_POST['ok'])) { // Add more empty fields for ($i = $cnt; $i < $max; $i++) { - $OUT .= "
  •  
    (".POINTS.")\n"; + $OUT .= "
  •  
    ({!POINTS!})\n"; } $OUT .= "\n"; define('__TRATES_LIST', $OUT);