X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=70bf8e32b552e34818022b3774782dd673cc93cd;hb=55e6ddf528028536b88b1397ef8297655782de69;hp=4fd94922c491d5e233a37c01c63c498981d6e4ef;hpb=75ad748a68473ace540251427a74fb781b1145e9;p=mailer.git diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index 4fd94922c4..70bf8e32b5 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -60,18 +60,18 @@ if (isset($_POST['ok'])) 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($_CONFIG['turbo_bonus'] / 2).";".round($_CONFIG['turbo_bonus'] / 4).""; // Save data - ADMIN_SAVE_SETTINGS($_POST, "_config", "config='0'"); + 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']; + $_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"))) + 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"); } @@ -79,23 +79,23 @@ if (isset($_POST['ok'])) 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($_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']); // Transfer options to template __MEMBER_SELECTION - ADD_MEMBER_SELECTION_BOX(false, true, true, $CONFIG['bonus_uid']); + ADD_MEMBER_SELECTION_BOX(false, true, true, $_CONFIG['bonus_uid']); // Initialize array for the points list - $RANKS = explode(";", $CONFIG['bonus_rates']); + $RANKS = explode(";", $_CONFIG['bonus_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 (empty($_CONFIG['bonus_rates'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4)); // Generate list $OUT = "
    \n"; @@ -114,130 +114,130 @@ if (isset($_POST['ok'])) $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($_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" )); // Activate / Deactivate bonus active rallye (Y/N) - switch ($CONFIG['bonus_active']) + switch ($_CONFIG['bonus_active']) { - case "Y": - define('__BONUS_ACTIVE_Y', " checked"); + case 'Y': + define('__BONUS_ACTIVE_Y', ' checked'); define('__BONUS_ACTIVE_N', ""); break; - case "N": + case 'N': define('__BONUS_ACTIVE_Y', ""); - define('__BONUS_ACTIVE_N', " checked"); + define('__BONUS_ACTIVE_N', ' checked'); break; } // Other bonus to de-/activate - switch ($CONFIG['bonus_login_yn']) + switch ($_CONFIG['bonus_login_yn']) { - case "Y": - define('__BONUS_LOGIN_Y', " checked"); + case 'Y': + define('__BONUS_LOGIN_Y', ' checked'); define('__BONUS_LOGIN_N', ""); break; - case "N": + case 'N': define('__BONUS_LOGIN_Y', ""); - define('__BONUS_LOGIN_N', " checked"); + define('__BONUS_LOGIN_N', ' checked'); break; } - switch ($CONFIG['bonus_stats_yn']) + switch ($_CONFIG['bonus_stats_yn']) { - case "Y": - define('__BONUS_STATS_Y', " checked"); + case 'Y': + define('__BONUS_STATS_Y', ' checked'); define('__BONUS_STATS_N', ""); break; - case "N": + case 'N': define('__BONUS_STATS_Y', ""); - define('__BONUS_STATS_N', " checked"); + define('__BONUS_STATS_N', ' checked'); break; } - switch ($CONFIG['bonus_order_yn']) + switch ($_CONFIG['bonus_order_yn']) { - case "Y": - define('__BONUS_ORDER_Y', " checked"); + case 'Y': + define('__BONUS_ORDER_Y', ' checked'); define('__BONUS_ORDER_N', ""); break; - case "N": + case 'N': define('__BONUS_ORDER_Y', ""); - define('__BONUS_ORDER_N', " checked"); + define('__BONUS_ORDER_N', ' checked'); break; } - switch ($CONFIG['bonus_ref_yn']) + switch ($_CONFIG['bonus_ref_yn']) { - case "Y": - define('__BONUS_REF_Y', " checked"); + case 'Y': + define('__BONUS_REF_Y', ' checked'); define('__BONUS_REF_N', ""); break; - case "N": + case 'N': define('__BONUS_REF_Y', ""); - define('__BONUS_REF_N', " checked"); + define('__BONUS_REF_N', ' checked'); break; } - switch ($CONFIG['bonus_click_yn']) + switch ($_CONFIG['bonus_click_yn']) { - case "Y": - define('__BONUS_CLICK_Y', " checked"); + case 'Y': + define('__BONUS_CLICK_Y', ' checked'); define('__BONUS_CLICK_N', ""); break; - case "N": + case 'N': define('__BONUS_CLICK_Y', ""); - define('__BONUS_CLICK_N', " checked"); + define('__BONUS_CLICK_N', ' checked'); break; } - switch ($CONFIG['bonus_en_notify']) + switch ($_CONFIG['bonus_en_notify']) { - case "Y": - define('__BONUS_EN_NOTIFY_Y', " checked"); + case 'Y': + define('__BONUS_EN_NOTIFY_Y', ' 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'); break; } - switch ($CONFIG['bonus_di_notify']) + switch ($_CONFIG['bonus_di_notify']) { - case "Y": - define('__BONUS_DI_NOTIFY_Y', " checked"); + case 'Y': + define('__BONUS_DI_NOTIFY_Y', ' 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'); break; } - switch ($CONFIG['bonus_new_mem_notify']) + switch ($_CONFIG['bonus_new_mem_notify']) { - case "Y": - define('__BONUS_NEW_MEMBER_NOTIFY_Y', " checked"); + case 'Y': + define('__BONUS_NEW_MEMBER_NOTIFY_Y', ' 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'); break; } - switch ($CONFIG['bonus_include_own']) + switch ($_CONFIG['bonus_include_own']) { - case "Y": - define('__BONUS_INCLUDE_OWN_Y', " checked"); + case 'Y': + define('__BONUS_INCLUDE_OWN_Y', ' 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'); break; }