X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_bonus.php;h=04102a6ad08d650700e5aa531650e3d6427bd1cf;hb=88624bbf36f5b3cb5ef796a662853a6d38c4ce64;hp=8c4d5497bbead05ef70cd90106f1b95315e4a81e;hpb=66b91ce490ab549425619c95fc12086e126d541b;p=mailer.git diff --git a/inc/modules/admin/what-config_bonus.php b/inc/modules/admin/what-config_bonus.php index 8c4d5497bb..04102a6ad0 100644 --- a/inc/modules/admin/what-config_bonus.php +++ b/inc/modules/admin/what-config_bonus.php @@ -17,7 +17,7 @@ * 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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,55 +37,52 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); -} +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); +} // END - if // Add description as navigation point -ADD_DESCR('admin', __FILE__); +addMenuDescription('admin', __FILE__); if (isFormSent()) { // Replace german decimal commas to computer decimal dots - REQUEST_SET_POST('login_bonus', convertCommaToDot(REQUEST_POST('login_bonus'))); - REQUEST_SET_POST('turbo_bonus', convertCommaToDot(REQUEST_POST('turbo_bonus'))); - REQUEST_SET_POST('bonus_ref', convertCommaToDot(REQUEST_POST('bonus_ref'))); - REQUEST_SET_POST('bonus_order', convertCommaToDot(REQUEST_POST('bonus_order'))); - REQUEST_SET_POST('bonus_notify_points', convertCommaToDot(REQUEST_POST('bonus_notify_points'))); + setRequestPostElement('login_bonus', convertCommaToDot(postRequestElement('login_bonus'))); + setRequestPostElement('turbo_bonus', convertCommaToDot(postRequestElement('turbo_bonus'))); + setRequestPostElement('bonus_ref', convertCommaToDot(postRequestElement('bonus_ref'))); + setRequestPostElement('bonus_order', convertCommaToDot(postRequestElement('bonus_order'))); + setRequestPostElement('bonus_notify_points', convertCommaToDot(postRequestElement('bonus_notify_points'))); // Generate string for saving ranks - REQUEST_SET_POST('turbo_rates', ''); + setRequestPostElement('turbo_rates', ''); $RATES = array(); - foreach (REQUEST_POST('rate') as $rate) { + foreach (postRequestElement('rate') as $rate) { $rate = trim(convertCommaToDot($rate)); if (!empty($rate)) $RATES[] = $rate; } - REQUEST_SET_POST('turbo_rates', trim(implode(';', $RATES))); - REQUEST_UNSET_POST('rate'); + setRequestPostElement('turbo_rates', trim(implode(';', $RATES))); + unsetPostRequestElement('rate'); // Automatically calculate bonus points for ranks 2 and 3 when not set - if (!REQUEST_ISSET_POST(('turbo_rates'))) REQUEST_SET_POST('turbo_rates', ''.round(getConfig('turbo_bonus') / 2).';'.round(getConfig('turbo_bonus') / 4).''); + if (!isPostRequestElementSet('turbo_rates')) setRequestPostElement('turbo_rates', ''.round(getConfig('turbo_bonus') / 2).';'.round(getConfig('turbo_bonus') / 4).''); // Save data - ADMIN_SAVE_SETTINGS_POST(); + adminSaveSettingsFromPostData(); // Remember new settings - 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')); + setConfigEntry('bonus_active' , postRequestElement('bonus_active')); + setConfigEntry('bonus_en_notify', postRequestElement('bonus_en_notify')); + setConfigEntry('bonus_di_notify', postRequestElement('bonus_di_notify')); } else { // Prepare contants for the template - define('__LOGIN_VALUE' , translateComma(getConfig('login_bonus') , false)); - define('__TURBO_VALUE' , translateComma(getConfig('turbo_bonus') , false)); - define('__ORDER_VALUE' , translateComma(getConfig('bonus_order') , false)); - define('__REF_VALUE' , translateComma(getConfig('bonus_ref') , false)); - define('__STATS_VALUE' , translateComma(getConfig('bonus_stats') , false)); - define('__NOTIFY_VALUE', translateComma(getConfig('bonus_notify_points'), false)); - define('__TRANKS_VALUE', getConfig('bonus_ranks')); - define('__TLINES_VALUE', getConfig('bonus_lines')); - - // Transfer options to template __MEMBER_SELECTION - define('__MEMBER_SELECTION', ADD_MEMBER_SELECTION_BOX(getConfig('bonus_uid'), false, true, true, 'bonus_uid')); + $content['login'] = translateComma(getConfig('login_bonus') , false); + $content['turbo'] = translateComma(getConfig('turbo_bonus') , false); + $content['order'] = translateComma(getConfig('bonus_order') , false); + $content['ref'] = translateComma(getConfig('bonus_ref') , false); + $content['stats'] = translateComma(getConfig('bonus_stats') , false); + $content['notify'] = translateComma(getConfig('bonus_notify_points'), false); + + // Transfer options to template + $content['member_selection'] = addMemberSelectionBox(getConfig('bonus_userid'), false, true, true, 'bonus_userid'); // Initialize array for the points list //die("*".getConfig('turbo_rates')."*"); @@ -96,154 +93,41 @@ if (isFormSent()) { // Generate list $OUT = "
    \n"; - $cnt = 0; + $cnt = '0'; foreach ($RANKS as $k => $rate) { if (!empty($rate)) { // Print only when something is in $OUT .= "
  1.  
    ({?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 .= "
  2.  
    ({?POINTS?})\n"; - } + $OUT .= "
  3.  
    ({?POINTS?})
  4. \n"; + } // END - for $OUT .= "
\n"; - define('__TRATES_LIST', $OUT); - - define('__LOGIN_TIMEOUT_SELECTION', createTimeSelections(getConfig('login_timeout') , 'login_timeout' , 'WDh')); - define('__BONUS_TIMEOUT_SELECTION', createTimeSelections(getConfig('bonus_timeout') , 'bonus_timeout' , 'WDh')); - $content['wait_selection'] = createTimeSelections(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', ' checked="checked"'); - define('__BONUS_ACTIVE_N', ''); - break; - - case 'N': - define('__BONUS_ACTIVE_Y', ''); - define('__BONUS_ACTIVE_N', ' checked="checked"'); - break; - } - // Other bonus to de-/activate - switch (getConfig('bonus_login_yn')) - { - case 'Y': - define('__BONUS_LOGIN_Y', ' checked="checked"'); - define('__BONUS_LOGIN_N', ''); - break; - - case 'N': - define('__BONUS_LOGIN_Y', ''); - define('__BONUS_LOGIN_N', ' checked="checked"'); - break; - } - switch (getConfig('bonus_stats_yn')) - { - case 'Y': - define('__BONUS_STATS_Y', ' checked="checked"'); - define('__BONUS_STATS_N', ''); - break; - - case 'N': - define('__BONUS_STATS_Y', ''); - define('__BONUS_STATS_N', ' checked="checked"'); - break; - } - switch (getConfig('bonus_order_yn')) - { - case 'Y': - define('__BONUS_ORDER_Y', ' checked="checked"'); - define('__BONUS_ORDER_N', ''); - break; - - case 'N': - define('__BONUS_ORDER_Y', ''); - define('__BONUS_ORDER_N', ' checked="checked"'); - break; - } - switch (getConfig('bonus_ref_yn')) - { - case 'Y': - define('__BONUS_REF_Y', ' checked="checked"'); - define('__BONUS_REF_N', ''); - break; - - case 'N': - define('__BONUS_REF_Y', ''); - define('__BONUS_REF_N', ' checked="checked"'); - break; - } - switch (getConfig('bonus_click_yn')) - { - case 'Y': - define('__BONUS_CLICK_Y', ' checked="checked"'); - define('__BONUS_CLICK_N', ''); - break; - - case 'N': - define('__BONUS_CLICK_Y', ''); - define('__BONUS_CLICK_N', ' checked="checked"'); - break; - } - switch (getConfig('bonus_en_notify')) - { - case 'Y': - define('__BONUS_EN_NOTIFY_Y', ' checked="checked"'); - define('__BONUS_EN_NOTIFY_N', ''); - break; - - case 'N': - define('__BONUS_EN_NOTIFY_Y', ''); - define('__BONUS_EN_NOTIFY_N', ' checked="checked"'); - break; - } - switch (getConfig('bonus_di_notify')) - { - case 'Y': - define('__BONUS_DI_NOTIFY_Y', ' checked="checked"'); - define('__BONUS_DI_NOTIFY_N', ''); - break; - - case 'N': - define('__BONUS_DI_NOTIFY_Y', ''); - define('__BONUS_DI_NOTIFY_N', ' checked="checked"'); - break; - } - switch (getConfig('bonus_new_mem_notify')) - { - case 'Y': - define('__BONUS_NEW_MEMBER_NOTIFY_Y', ' checked="checked"'); - define('__BONUS_NEW_MEMBER_NOTIFY_N', ''); - break; - - case 'N': - define('__BONUS_NEW_MEMBER_NOTIFY_Y', ''); - define('__BONUS_NEW_MEMBER_NOTIFY_N', ' checked="checked"'); - break; - } - switch (getConfig('bonus_include_own')) - { - case 'Y': - define('__BONUS_INCLUDE_OWN_Y', ' checked="checked"'); - define('__BONUS_INCLUDE_OWN_N', ''); - break; - - case 'N': - define('__BONUS_INCLUDE_OWN_Y', ''); - define('__BONUS_INCLUDE_OWN_N', ' checked="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, $content); + loadTemplate('admin_config_bonus', false, $content); } -// + +// [EOF] ?>