X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=5f2a8d9e4638b7362d387e2526e59a5c66dfef06;hb=17c1d13dde4b9725bb9dc55c49838ff9aa751dc0;hp=3360eeb3d0adc2da68d3989f3555c6852a15d89b;hpb=93cd46744c402fa7b140e5f1d6b07281fc5558bf;p=mailer.git diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index 3360eeb3d0..5f2a8d9e46 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -1,7 +1,7 @@ \n"; - $cnt = 0; + $OUT = '
    '; + $count = '0'; foreach ($RANKS as $k => $rate) { - if (!empty($rate)) { + if (!empty($rate)) { // Print only when something is in - $OUT .= "
  1.  
    ({?POINTS?})\n"; + $OUT .= '
  2. ({?POINTS?})
  3. '; } // END - if - $cnt++; + $count++; } // END - foreach // Maxmium entries $max = 10; - if ($cnt >= 8) $max = $cnt+3; + if ($count >= 8) $max = $count+3; // Add more empty fields - for ($i = $cnt; $i < $max; $i++) { - $OUT .= "
  4.  
    ({?POINTS?})
  5. \n"; + for ($i = $count; $i < $max; $i++) { + $OUT .= '
  6. ({?POINTS?})
  7. '; } // END - for - $OUT .= "
\n"; + $OUT .= ''; $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' ); + $content['login_timeout_selection'] = createConfigurationTimeSelections('login_timeout' , 'WDh'); + $content['bonus_timeout_selection'] = createConfigurationTimeSelections('bonus_timeout' , 'WDh'); + $content['wait_selection'] = createConfigurationTimeSelections('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) { + foreach (array('active','login_yn','stats_yn','order_yn','ref_yn','click_yn','enable_notify','disable_notify','new_member_notify','include_own') as $entry) { $content[$entry . '_y'] = ''; $content[$entry . '_n'] = ''; $content[$entry . '_' . strtolower(getConfig('bonus_' . $entry))] = ' checked="checked"';