X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=0bc5676d6a78211c49bfb4e24f246f8886b639c4;hp=edf24bfc67ff58f07c6a49092d33954516d0e541;hb=6f9f29d5caee60a2cceae33a7a53e1b4c7319a0c;hpb=80e2def8ef2125fd4d7d1312ee3993ab613f0846 diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index edf24bfc67..0bc5676d6a 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -1,7 +1,7 @@ \n"; + $OUT = '
    '; + $count = '0'; foreach ($RANKS as $k => $rate) { - if (!empty($rate)) { + if (!empty($rate)) { // Print only when something is in - $OUT .= "
  1.  (".POINTS.")\n"; - } - } - for ($i = 3; $i < 8; $i++) { - $OUT .= "
  2.  (".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" )); - - // Activate / Deactivate bonus active rallye (Y/N) - switch ($_CONFIG['bonus_active']) - { - case 'Y': - define('__BONUS_ACTIVE_Y', ' checked'); - define('__BONUS_ACTIVE_N', ""); - break; - - case 'N': - define('__BONUS_ACTIVE_Y', ""); - define('__BONUS_ACTIVE_N', ' checked'); - break; - } - // Other bonus to de-/activate - switch ($_CONFIG['bonus_login_yn']) - { - case 'Y': - define('__BONUS_LOGIN_Y', ' checked'); - define('__BONUS_LOGIN_N', ""); - break; - - case 'N': - define('__BONUS_LOGIN_Y', ""); - define('__BONUS_LOGIN_N', ' checked'); - break; - } - switch ($_CONFIG['bonus_stats_yn']) - { - case 'Y': - define('__BONUS_STATS_Y', ' checked'); - define('__BONUS_STATS_N', ""); - break; - - case 'N': - define('__BONUS_STATS_Y', ""); - define('__BONUS_STATS_N', ' checked'); - break; - } - switch ($_CONFIG['bonus_order_yn']) - { - case 'Y': - define('__BONUS_ORDER_Y', ' checked'); - define('__BONUS_ORDER_N', ""); - break; - - case 'N': - define('__BONUS_ORDER_Y', ""); - define('__BONUS_ORDER_N', ' checked'); - break; - } - switch ($_CONFIG['bonus_ref_yn']) - { - case 'Y': - define('__BONUS_REF_Y', ' checked'); - define('__BONUS_REF_N', ""); - break; - - case 'N': - define('__BONUS_REF_Y', ""); - define('__BONUS_REF_N', ' checked'); - break; - } - switch ($_CONFIG['bonus_click_yn']) - { - case 'Y': - define('__BONUS_CLICK_Y', ' checked'); - define('__BONUS_CLICK_N', ""); - break; - - case 'N': - define('__BONUS_CLICK_Y', ""); - define('__BONUS_CLICK_N', ' checked'); - break; - } - switch ($_CONFIG['bonus_en_notify']) - { - case 'Y': - define('__BONUS_EN_NOTIFY_Y', ' checked'); - define('__BONUS_EN_NOTIFY_N', ""); - break; - - case 'N': - define('__BONUS_EN_NOTIFY_Y', ""); - define('__BONUS_EN_NOTIFY_N', ' checked'); - break; - } - switch ($_CONFIG['bonus_di_notify']) - { - case 'Y': - define('__BONUS_DI_NOTIFY_Y', ' checked'); - define('__BONUS_DI_NOTIFY_N', ""); - break; - - case 'N': - define('__BONUS_DI_NOTIFY_Y', ""); - define('__BONUS_DI_NOTIFY_N', ' checked'); - break; - } - switch ($_CONFIG['bonus_new_mem_notify']) - { - case 'Y': - define('__BONUS_NEW_MEMBER_NOTIFY_Y', ' checked'); - define('__BONUS_NEW_MEMBER_NOTIFY_N', ""); - break; - - case 'N': - define('__BONUS_NEW_MEMBER_NOTIFY_Y', ""); - define('__BONUS_NEW_MEMBER_NOTIFY_N', ' checked'); - break; - } - switch ($_CONFIG['bonus_include_own']) - { - case 'Y': - define('__BONUS_INCLUDE_OWN_Y', ' checked'); - define('__BONUS_INCLUDE_OWN_N', ""); - break; - - case 'N': - define('__BONUS_INCLUDE_OWN_Y', ""); - define('__BONUS_INCLUDE_OWN_N', ' checked'); - break; - } + $OUT .= '
  • ({?POINTS?})
  • '; + } // END - if + $count++; + } // END - foreach + + // Maxmium entries + $max = 10; + if ($count >= 8) $max = $count+3; + + // Add more empty fields + for ($i = $count; $i < $max; $i++) { + $OUT .= '
  • ({?POINTS?})
  • '; + } // END - for + $OUT .= ''; + $content['trates_list'] = $OUT; + + // Selection boxes + $content['login_timeout_selection'] = createConfigurationTimeSelections('login_timeout' , 'WDh'); + $content['bonus_timeout_selection'] = createConfigurationTimeSelections('bonus_timeout' , 'WDh'); + $content['wait_selection'] = createConfigurationTimeSelections('bonus_notify_wait', 'ms' ); // Load final template - LOAD_TEMPLATE("admin_config_bonus", false); + loadTemplate('admin_config_bonus', false, $content); } -// + +// [EOF] ?>