X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=3e3308027ebd003bc1b62607ace2210a9edf408f;hb=aaeab8d02fbf455df9b60ab0b85c999dd2da9069;hp=b86ddc5ecc5eda426785e0f79748b73efdbab2d0;hpb=876386e7b618428d242cfadbd4f014a041e74c2b;p=mailer.git diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index b86ddc5ecc..3e3308027e 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -38,22 +38,20 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); -if (isset($_POST['ok'])) -{ +if (isset($_POST['ok'])) { // Replace german decimal commas to computer decimal dots - $_POST['login_bonus'] = str_replace(",", ".", $_POST['login_bonus'] ); - $_POST['turbo_bonus'] = str_replace(",", ".", $_POST['turbo_bonus'] ); - $_POST['bonus_ref'] = str_replace(",", ".", $_POST['bonus_ref'] ); - $_POST['bonus_order'] = str_replace(",", ".", $_POST['bonus_order'] ); - $_POST['bonus_notify_points'] = str_replace(",", ".", $_POST['bonus_notify_points']); + $_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']); // Generate string for saving ranks $_POST['turbo_rates'] = ""; $RATES = array(); - foreach ($_POST['rate'] as $rate) - { - $rate = trim(str_replace(",", ".", $rate)); + foreach ($_POST['rate'] as $rate) { + $rate = trim(REVERT_COMMA($rate)); if (isset($rate)) $RATES[] = $rate; } $_POST['turbo_rates'] = trim(implode(";", $RATES)); @@ -69,11 +67,6 @@ if (isset($_POST['ok'])) $_CONFIG['bonus_active'] = $_POST['bonus_active']; $_CONFIG['bonus_en_notify'] = $_POST['bonus_en_notify']; $_CONFIG['bonus_di_notify'] = $_POST['bonus_di_notify']; - - // Include sending out mails - if ((($_CONFIG['bonus_active'] == "Y") && ($_CONFIG['bonus_en_notify'] == "Y")) || (($_CONFIG['bonus_active'] == "N") && ($_CONFIG['bonus_di_notify'] == "Y"))) { - include(PATH."inc/mails/bonus_mails.php"); - } } else { // Prepare contants for the template define('__LOGIN_VALUE' , TRANSLATE_COMMA($_CONFIG['login_bonus'] , false)); @@ -89,21 +82,29 @@ if (isset($_POST['ok'])) define('__MEMBER_SELECTION', ADD_MEMBER_SELECTION_BOX($_CONFIG['bonus_uid'], false, true, true, "bonus_uid")); // Initialize array for the points list - $RANKS = explode(";", $_CONFIG['bonus_ranks']); + //die("*".$_CONFIG['turbo_rates']."*"); + $RANKS = explode(";", $_CONFIG['turbo_rates']); // Automatically calculate bonus points for ranks 2 and 3 when not set - if (empty($_CONFIG['bonus_ranks'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4)); + if (empty($_CONFIG['turbo_rates'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4)); // Generate list $OUT = "
    \n"; + $cnt = 0; foreach ($RANKS as $k => $rate) { if (!empty($rate)) { // Print only when something is in $OUT .= "
  1.  (".POINTS.")\n"; } + $cnt++; } - for ($i = 3; $i < 8; $i++) { - $OUT .= "
  2.  (".POINTS.")\n"; + // Maxmium entries + $max = 10; + if ($cnt >= 8) $max = $cnt+3; + + // Add more empty fields + for ($i = $cnt; $i < $max; $i++) { + $OUT .= "
  3.  (".POINTS.")\n"; } $OUT .= "
\n"; define('__TRATES_LIST', $OUT);