X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=e8eb4998908871f8c5f4bacdd496a498e35cb532;hb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e;hp=1ea7250a868e251c1d453b18da69b0f38dac83fc;hpb=a090e351c49fe021fb3064325694da03402332e0;p=mailer.git diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index 1ea7250a86..e8eb499890 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -1,7 +1,7 @@ \n"; - $cnt = 0; + $cnt = '0'; foreach ($RANKS as $k => $rate) { if (!empty($rate)) { // Print only when something is in - $OUT .= "
  •  
    ({!POINTS!})\n"; - } + $OUT .= "
  •  
    ({?POINTS?})\n"; + } // END - if $cnt++; - } + } // END - foreach + // Maxmium entries $max = 10; if ($cnt >= 8) $max = $cnt+3; // Add more empty fields for ($i = $cnt; $i < $max; $i++) { - $OUT .= "
  •  
    ({!POINTS!})\n"; - } + $OUT .= "
  •  
    ({?POINTS?})
  • \n"; + } // END - for $OUT .= "\n"; - define('__TRATES_LIST', $OUT); - - 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 (getConfig('bonus_active')) - { - case 'Y': - define('__BONUS_ACTIVE_Y', ' chkecked="checked"'); - define('__BONUS_ACTIVE_N', ''); - break; - - 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', ' chkecked="checked"'); - define('__BONUS_LOGIN_N', ''); - break; - - case 'N': - define('__BONUS_LOGIN_Y', ''); - define('__BONUS_LOGIN_N', ' chkecked="checked"'); - break; - } - switch (getConfig('bonus_stats_yn')) - { - case 'Y': - define('__BONUS_STATS_Y', ' chkecked="checked"'); - define('__BONUS_STATS_N', ''); - break; - - case 'N': - define('__BONUS_STATS_Y', ''); - define('__BONUS_STATS_N', ' chkecked="checked"'); - break; - } - switch (getConfig('bonus_order_yn')) - { - case 'Y': - define('__BONUS_ORDER_Y', ' chkecked="checked"'); - define('__BONUS_ORDER_N', ''); - break; - - case 'N': - define('__BONUS_ORDER_Y', ''); - define('__BONUS_ORDER_N', ' chkecked="checked"'); - break; - } - switch (getConfig('bonus_ref_yn')) - { - case 'Y': - define('__BONUS_REF_Y', ' chkecked="checked"'); - define('__BONUS_REF_N', ''); - break; - - case 'N': - define('__BONUS_REF_Y', ''); - define('__BONUS_REF_N', ' chkecked="checked"'); - break; - } - switch (getConfig('bonus_click_yn')) - { - case 'Y': - define('__BONUS_CLICK_Y', ' chkecked="checked"'); - define('__BONUS_CLICK_N', ''); - break; - - 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', ' chkecked="checked"'); - define('__BONUS_EN_NOTIFY_N', ''); - break; - - 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', ' chkecked="checked"'); - define('__BONUS_DI_NOTIFY_N', ''); - break; - - 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', ' chkecked="checked"'); - define('__BONUS_NEW_MEMBER_NOTIFY_N', ''); - break; - - 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', ' chkecked="checked"'); - define('__BONUS_INCLUDE_OWN_N', ''); - break; - - case 'N': - define('__BONUS_INCLUDE_OWN_Y', ''); - define('__BONUS_INCLUDE_OWN_N', ' chkecked="checked"'); - break; - } + $content['trates_list'] = $OUT; + + // Selection boxes + $content['login_timeout_selection'] = createTimeSelections(getConfig('login_timeout') , 'login_timeout' , 'WDh'); + $content['bonus_timeout_selection'] = createTimeSelections(getConfig('bonus_timeout') , 'bonus_timeout' , 'WDh'); + $content['wait_selection'] = createTimeSelections(getConfig('bonus_notify_wait'), 'bonus_notify_wait', 'ms' ); + + // Init Y/N selections + foreach (array('active','login_yn','stats_yn','order_yn','ref_yn','click_yn','en_notify','di_notify','new_mem_notify','include_own') as $entry) { + $content[$entry . '_y'] = ''; + $content[$entry . '_n'] = ''; + $content[$entry . '_' . strtolower(getConfig('bonus_' . $entry))] = ' checked="checked"'; + } // END - foreach // Load final template - LOAD_TEMPLATE("admin_config_bonus", false); + loadTemplate('admin_config_bonus', false, $content); } -// + +// [EOF] ?>