X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=0a97e29a00966ebda2008f5b63d95f9734f97cf6;hp=11bbbd58d7cab3e97e21be43815b92795b21911c;hb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;hpb=a0c37ca650d27d0aed672ebf34e1be4601a2e0e9 diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index 11bbbd58d7..0a97e29a00 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 * @@ -33,40 +38,41 @@ // 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 (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)); @@ -83,18 +89,18 @@ if (isset($_POST['ok'])) { // Initialize array for the points list //die("*".getConfig('turbo_rates')."*"); - $RANKS = explode(";", getConfig('turbo_rates')); + $RANKS = explode(';', getConfig('turbo_rates')); // Automatically calculate bonus points for ranks 2 and 3 when not set if (getConfig('turbo_rates') == "") $RANKS = array(round(getConfig('turbo_bonus') / 2), round(getConfig('turbo_bonus') / 4)); // Generate list - $OUT = "
    \n"; + $OUT = "
      \n"; $cnt = 0; foreach ($RANKS as $k => $rate) { if (!empty($rate)) { // Print only when something is in - $OUT .= "
    1.  (".POINTS.")\n"; + $OUT .= "
    2.  
      ({!POINTS!})\n"; } $cnt++; } @@ -104,9 +110,9 @@ if (isset($_POST['ok'])) { // Add more empty fields for ($i = $cnt; $i < $max; $i++) { - $OUT .= "
    3.  (".POINTS.")\n"; + $OUT .= "
    4.  
      ({!POINTS!})\n"; } - $OUT .= "
    \n"; + $OUT .= "
\n"; define('__TRATES_LIST', $OUT); define('__LOGIN_TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS(getConfig('login_timeout') , "login_timeout" , "WDh")); @@ -116,123 +122,123 @@ if (isset($_POST['ok'])) { // Activate / Deactivate bonus active rallye (Y/N) switch (getConfig('bonus_active')) { - case "Y": - define('__BONUS_ACTIVE_Y', " checked=\"checked\""); - define('__BONUS_ACTIVE_N', ""); + case 'Y': + define('__BONUS_ACTIVE_Y', ' chkecked="checked"'); + define('__BONUS_ACTIVE_N', ''); break; - case "N": - define('__BONUS_ACTIVE_Y', ""); - define('__BONUS_ACTIVE_N', " checked=\"checked\""); + case 'N': + define('__BONUS_ACTIVE_Y', ''); + define('__BONUS_ACTIVE_N', ' chkecked="checked"'); break; } // Other bonus to de-/activate switch (getConfig('bonus_login_yn')) { - case "Y": - define('__BONUS_LOGIN_Y', " checked=\"checked\""); - define('__BONUS_LOGIN_N', ""); + case 'Y': + define('__BONUS_LOGIN_Y', ' chkecked="checked"'); + define('__BONUS_LOGIN_N', ''); break; - case "N": - define('__BONUS_LOGIN_Y', ""); - define('__BONUS_LOGIN_N', " checked=\"checked\""); + case 'N': + define('__BONUS_LOGIN_Y', ''); + define('__BONUS_LOGIN_N', ' chkecked="checked"'); break; } switch (getConfig('bonus_stats_yn')) { - case "Y": - define('__BONUS_STATS_Y', " checked=\"checked\""); - define('__BONUS_STATS_N', ""); + case 'Y': + define('__BONUS_STATS_Y', ' chkecked="checked"'); + define('__BONUS_STATS_N', ''); break; - case "N": - define('__BONUS_STATS_Y', ""); - define('__BONUS_STATS_N', " checked=\"checked\""); + case 'N': + define('__BONUS_STATS_Y', ''); + define('__BONUS_STATS_N', ' chkecked="checked"'); break; } switch (getConfig('bonus_order_yn')) { - case "Y": - define('__BONUS_ORDER_Y', " checked=\"checked\""); - define('__BONUS_ORDER_N', ""); + case 'Y': + define('__BONUS_ORDER_Y', ' chkecked="checked"'); + define('__BONUS_ORDER_N', ''); break; - case "N": - define('__BONUS_ORDER_Y', ""); - define('__BONUS_ORDER_N', " checked=\"checked\""); + case 'N': + define('__BONUS_ORDER_Y', ''); + define('__BONUS_ORDER_N', ' chkecked="checked"'); break; } switch (getConfig('bonus_ref_yn')) { - case "Y": - define('__BONUS_REF_Y', " checked=\"checked\""); - define('__BONUS_REF_N', ""); + case 'Y': + define('__BONUS_REF_Y', ' chkecked="checked"'); + define('__BONUS_REF_N', ''); break; - case "N": - define('__BONUS_REF_Y', ""); - define('__BONUS_REF_N', " checked=\"checked\""); + case 'N': + define('__BONUS_REF_Y', ''); + define('__BONUS_REF_N', ' chkecked="checked"'); break; } switch (getConfig('bonus_click_yn')) { - case "Y": - define('__BONUS_CLICK_Y', " checked=\"checked\""); - define('__BONUS_CLICK_N', ""); + case 'Y': + define('__BONUS_CLICK_Y', ' chkecked="checked"'); + define('__BONUS_CLICK_N', ''); break; - case "N": - define('__BONUS_CLICK_Y', ""); - define('__BONUS_CLICK_N', " checked=\"checked\""); + case 'N': + define('__BONUS_CLICK_Y', ''); + define('__BONUS_CLICK_N', ' chkecked="checked"'); break; } switch (getConfig('bonus_en_notify')) { - case "Y": - define('__BONUS_EN_NOTIFY_Y', " checked=\"checked\""); - define('__BONUS_EN_NOTIFY_N', ""); + case 'Y': + define('__BONUS_EN_NOTIFY_Y', ' chkecked="checked"'); + define('__BONUS_EN_NOTIFY_N', ''); break; - case "N": - define('__BONUS_EN_NOTIFY_Y', ""); - define('__BONUS_EN_NOTIFY_N', " checked=\"checked\""); + case 'N': + define('__BONUS_EN_NOTIFY_Y', ''); + define('__BONUS_EN_NOTIFY_N', ' chkecked="checked"'); break; } switch (getConfig('bonus_di_notify')) { - case "Y": - define('__BONUS_DI_NOTIFY_Y', " checked=\"checked\""); - define('__BONUS_DI_NOTIFY_N', ""); + case 'Y': + define('__BONUS_DI_NOTIFY_Y', ' chkecked="checked"'); + define('__BONUS_DI_NOTIFY_N', ''); break; - case "N": - define('__BONUS_DI_NOTIFY_Y', ""); - define('__BONUS_DI_NOTIFY_N', " checked=\"checked\""); + case 'N': + define('__BONUS_DI_NOTIFY_Y', ''); + define('__BONUS_DI_NOTIFY_N', ' chkecked="checked"'); break; } switch (getConfig('bonus_new_mem_notify')) { - case "Y": - define('__BONUS_NEW_MEMBER_NOTIFY_Y', " checked=\"checked\""); - define('__BONUS_NEW_MEMBER_NOTIFY_N', ""); + case 'Y': + define('__BONUS_NEW_MEMBER_NOTIFY_Y', ' chkecked="checked"'); + define('__BONUS_NEW_MEMBER_NOTIFY_N', ''); break; - case "N": - define('__BONUS_NEW_MEMBER_NOTIFY_Y', ""); - define('__BONUS_NEW_MEMBER_NOTIFY_N', " checked=\"checked\""); + case 'N': + define('__BONUS_NEW_MEMBER_NOTIFY_Y', ''); + define('__BONUS_NEW_MEMBER_NOTIFY_N', ' chkecked="checked"'); break; } switch (getConfig('bonus_include_own')) { - case "Y": - define('__BONUS_INCLUDE_OWN_Y', " checked=\"checked\""); - define('__BONUS_INCLUDE_OWN_N', ""); + case 'Y': + define('__BONUS_INCLUDE_OWN_Y', ' chkecked="checked"'); + define('__BONUS_INCLUDE_OWN_N', ''); break; - case "N": - define('__BONUS_INCLUDE_OWN_Y', ""); - define('__BONUS_INCLUDE_OWN_N', " checked=\"checked\""); + case 'N': + define('__BONUS_INCLUDE_OWN_Y', ''); + define('__BONUS_INCLUDE_OWN_N', ' chkecked="checked"'); break; }