X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=63e933d9f336e95c7776bfc251147d247e1ef8f0;hp=5c351478a5d0f483049ae742e6a22c8f7e715fc1;hb=f9a9c09e1ae257449bfd98f8854e321efba1dc3c;hpb=4d6226782aa4ba157dca8c3891412ba50159481f diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index 5c351478a5..63e933d9f3 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -32,212 +32,207 @@ ************************************************************************/ // 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'])) -{ +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)); unset($_POST['rate']); // Automatically calculate bonus points for ranks 2 and 3 when not set - if (empty($_POST['turbo_rates'])) $_POST['turbo_rates'] = "".round($CONFIG['turbo_bonus'] / 2).";".round($CONFIG['turbo_bonus'] / 4).""; + if (empty($_POST['turbo_rates'])) $_POST['turbo_rates'] = "".round(getConfig('turbo_bonus') / 2).";".round(getConfig('turbo_bonus') / 4).""; // Save data 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']; - - // 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 -{ + getConfig('bonus_active') = $_POST['bonus_active']; + $_CONFIG['bonus_en_notify'] = $_POST['bonus_en_notify']; + $_CONFIG['bonus_di_notify'] = $_POST['bonus_di_notify']; +} else { // Prepare contants for the template - define('__LOGIN_VALUE' , TRANSLATE_COMMA($CONFIG['login_bonus'] , false)); - define('__TURBO_VALUE' , TRANSLATE_COMMA($CONFIG['turbo_bonus'] , false)); - define('__ORDER_VALUE' , TRANSLATE_COMMA($CONFIG['bonus_order'] , false)); - define('__REF_VALUE' , TRANSLATE_COMMA($CONFIG['bonus_ref'] , false)); - define('__STATS_VALUE' , TRANSLATE_COMMA($CONFIG['bonus_stats'] , false)); - define('__NOTIFY_VALUE', TRANSLATE_COMMA($CONFIG['bonus_notify_points'], false)); - define('__TRANKS_VALUE', $CONFIG['bonus_ranks']); - define('__TLINES_VALUE', $CONFIG['bonus_lines']); + define('__LOGIN_VALUE' , TRANSLATE_COMMA(getConfig('login_bonus') , false)); + define('__TURBO_VALUE' , TRANSLATE_COMMA(getConfig('turbo_bonus') , false)); + define('__ORDER_VALUE' , TRANSLATE_COMMA(getConfig('bonus_order') , false)); + define('__REF_VALUE' , TRANSLATE_COMMA(getConfig('bonus_ref') , false)); + define('__STATS_VALUE' , TRANSLATE_COMMA(getConfig('bonus_stats') , false)); + define('__NOTIFY_VALUE', TRANSLATE_COMMA(getConfig('bonus_notify_points'), false)); + define('__TRANKS_VALUE', getConfig('bonus_ranks')); + define('__TLINES_VALUE', getConfig('bonus_lines')); // Transfer options to template __MEMBER_SELECTION - ADD_MEMBER_SELECTION_BOX(false, true, true, $CONFIG['bonus_uid']); + define('__MEMBER_SELECTION', ADD_MEMBER_SELECTION_BOX(getConfig('bonus_uid'), false, true, true, "bonus_uid")); // Initialize array for the points list - $RANKS = explode(";", $CONFIG['bonus_rates']); + //die("*".getConfig('turbo_rates')."*"); + $RANKS = explode(";", getConfig('turbo_rates')); // Automatically calculate bonus points for ranks 2 and 3 when not set - if (empty($CONFIG['bonus_rates'])) $RANKS = array(round($CONFIG['turbo_bonus'] / 2), round($CONFIG['turbo_bonus'] / 4)); + if (getConfig('turbo_rates') == "") $RANKS = array(round(getConfig('turbo_bonus') / 2), round(getConfig('turbo_bonus') / 4)); // Generate list $OUT = "
    \n"; - foreach ($RANKS as $k=>$rate) - { - if (!empty($rate)) - { + $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); - define('__LOGIN_TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS($CONFIG['login_timeout'] , "login_timeout" , "WDh")); - define('__BONUS_TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS($CONFIG['bonus_timeout'] , "bonus_timeout" , "WDh")); - define('__WAIT_SELECTION' , CREATE_TIME_SELECTIONS($CONFIG['bonus_notify_wait'], "bonus_notify_wait", "ms" )); + define('__LOGIN_TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS(getConfig('login_timeout') , "login_timeout" , "WDh")); + define('__BONUS_TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS(getConfig('bonus_timeout') , "bonus_timeout" , "WDh")); + define('__WAIT_SELECTION' , CREATE_TIME_SELECTIONS(getConfig('bonus_notify_wait'), "bonus_notify_wait", "ms" )); // Activate / Deactivate bonus active rallye (Y/N) - switch ($CONFIG['bonus_active']) + switch (getConfig('bonus_active')) { - case 'Y': - define('__BONUS_ACTIVE_Y', " checked"); + case "Y": + define('__BONUS_ACTIVE_Y', " checked=\"checked\""); define('__BONUS_ACTIVE_N', ""); break; - case 'N': + case "N": define('__BONUS_ACTIVE_Y', ""); - define('__BONUS_ACTIVE_N', " checked"); + define('__BONUS_ACTIVE_N', " checked=\"checked\""); break; } // Other bonus to de-/activate - switch ($CONFIG['bonus_login_yn']) + switch (getConfig('bonus_login_yn')) { - case 'Y': - define('__BONUS_LOGIN_Y', " checked"); + case "Y": + define('__BONUS_LOGIN_Y', " checked=\"checked\""); define('__BONUS_LOGIN_N', ""); break; - case 'N': + case "N": define('__BONUS_LOGIN_Y', ""); - define('__BONUS_LOGIN_N', " checked"); + define('__BONUS_LOGIN_N', " checked=\"checked\""); break; } - switch ($CONFIG['bonus_stats_yn']) + switch (getConfig('bonus_stats_yn')) { - case 'Y': - define('__BONUS_STATS_Y', " checked"); + case "Y": + define('__BONUS_STATS_Y', " checked=\"checked\""); define('__BONUS_STATS_N', ""); break; - case 'N': + case "N": define('__BONUS_STATS_Y', ""); - define('__BONUS_STATS_N', " checked"); + define('__BONUS_STATS_N', " checked=\"checked\""); break; } - switch ($CONFIG['bonus_order_yn']) + switch (getConfig('bonus_order_yn')) { - case 'Y': - define('__BONUS_ORDER_Y', " checked"); + case "Y": + define('__BONUS_ORDER_Y', " checked=\"checked\""); define('__BONUS_ORDER_N', ""); break; - case 'N': + case "N": define('__BONUS_ORDER_Y', ""); - define('__BONUS_ORDER_N', " checked"); + define('__BONUS_ORDER_N', " checked=\"checked\""); break; } - switch ($CONFIG['bonus_ref_yn']) + switch (getConfig('bonus_ref_yn')) { - case 'Y': - define('__BONUS_REF_Y', " checked"); + case "Y": + define('__BONUS_REF_Y', " checked=\"checked\""); define('__BONUS_REF_N', ""); break; - case 'N': + case "N": define('__BONUS_REF_Y', ""); - define('__BONUS_REF_N', " checked"); + define('__BONUS_REF_N', " checked=\"checked\""); break; } - switch ($CONFIG['bonus_click_yn']) + switch (getConfig('bonus_click_yn')) { - case 'Y': - define('__BONUS_CLICK_Y', " checked"); + case "Y": + define('__BONUS_CLICK_Y', " checked=\"checked\""); define('__BONUS_CLICK_N', ""); break; - case 'N': + case "N": define('__BONUS_CLICK_Y', ""); - define('__BONUS_CLICK_N', " checked"); + define('__BONUS_CLICK_N', " checked=\"checked\""); break; } - switch ($CONFIG['bonus_en_notify']) + switch (getConfig('bonus_en_notify')) { - case 'Y': - define('__BONUS_EN_NOTIFY_Y', " checked"); + case "Y": + define('__BONUS_EN_NOTIFY_Y', " checked=\"checked\""); define('__BONUS_EN_NOTIFY_N', ""); break; - case 'N': + case "N": define('__BONUS_EN_NOTIFY_Y', ""); - define('__BONUS_EN_NOTIFY_N', " checked"); + define('__BONUS_EN_NOTIFY_N', " checked=\"checked\""); break; } - switch ($CONFIG['bonus_di_notify']) + switch (getConfig('bonus_di_notify')) { - case 'Y': - define('__BONUS_DI_NOTIFY_Y', " checked"); + case "Y": + define('__BONUS_DI_NOTIFY_Y', " checked=\"checked\""); define('__BONUS_DI_NOTIFY_N', ""); break; - case 'N': + case "N": define('__BONUS_DI_NOTIFY_Y', ""); - define('__BONUS_DI_NOTIFY_N', " checked"); + define('__BONUS_DI_NOTIFY_N', " checked=\"checked\""); break; } - switch ($CONFIG['bonus_new_mem_notify']) + switch (getConfig('bonus_new_mem_notify')) { - case 'Y': - define('__BONUS_NEW_MEMBER_NOTIFY_Y', " checked"); + case "Y": + define('__BONUS_NEW_MEMBER_NOTIFY_Y', " checked=\"checked\""); define('__BONUS_NEW_MEMBER_NOTIFY_N', ""); break; - case 'N': + case "N": define('__BONUS_NEW_MEMBER_NOTIFY_Y', ""); - define('__BONUS_NEW_MEMBER_NOTIFY_N', " checked"); + define('__BONUS_NEW_MEMBER_NOTIFY_N', " checked=\"checked\""); break; } - switch ($CONFIG['bonus_include_own']) + switch (getConfig('bonus_include_own')) { - case 'Y': - define('__BONUS_INCLUDE_OWN_Y', " checked"); + case "Y": + define('__BONUS_INCLUDE_OWN_Y', " checked=\"checked\""); define('__BONUS_INCLUDE_OWN_N', ""); break; - case 'N': + case "N": define('__BONUS_INCLUDE_OWN_Y', ""); - define('__BONUS_INCLUDE_OWN_N', " checked"); + define('__BONUS_INCLUDE_OWN_N', " checked=\"checked\""); break; }