X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-config_beg.php;h=70d591f6e9c67e10b52d9a2000baca17a6641d3e;hb=116747e4dba29e9e2e4daa82c45d8bbb302e9378;hp=df66f24230f047ced32cee3d23c64b89e123e227;hpb=4d6226782aa4ba157dca8c3891412ba50159481f;p=mailer.git diff --git a/inc/modules/admin/what-config_beg.php b/inc/modules/admin/what-config_beg.php index df66f24230..70d591f6e9 100644 --- a/inc/modules/admin/what-config_beg.php +++ b/inc/modules/admin/what-config_beg.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Bettel-Link einstellen * * -------------------------------------------------------------------- * - * * + * $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 * @@ -32,139 +37,166 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin())) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR('admin', __FILE__); -if (isset($_POST['ok'])) -{ +if (IS_FORM_SENT()) { // Translate german decimal commas to computer decimal dots - $_POST['beg_points'] = str_replace(",", ".", $_POST['beg_points'] ); - $_POST['beg_points_max'] = str_replace(",", ".", $_POST['beg_points_max'] ); - $_POST['beg_notify_bonus'] = str_replace(",", ".", $_POST['beg_notify_bonus']); + REQUEST_SET_POST('beg_points' , REVERT_COMMA(REQUEST_POST('beg_points') )); + REQUEST_SET_POST('beg_points_max' , REVERT_COMMA(REQUEST_POST('beg_points_max') )); + REQUEST_SET_POST('beg_notify_bonus', REVERT_COMMA(REQUEST_POST('beg_notify_bonus'))); // Save settings - ADMIN_SAVE_SETTINGS($_POST); + ADMIN_SAVE_SETTINGS_POST(); // Remember new settings - $CONFIG['beg_rallye'] = $_POST['beg_rallye']; - $CONFIG['beg_ral_en_notify'] = $_POST['beg_ral_en_notify']; - $CONFIG['beg_ral_di_notify'] = $_POST['beg_ral_di_notify']; - - // Include sending out mails - if ((($CONFIG['beg_rallye'] == 'Y') && ($CONFIG['beg_ral_en_notify'] == 'Y')) || (($CONFIG['beg_rallye'] == 'N') && ($CONFIG['beg_ral_di_notify'] == 'Y'))) - { - include(PATH."inc/mails/beg_mails.php"); - } -} - else -{ + setConfigEntry('beg_rallye' , REQUEST_POST('beg_rallye')); + setConfigEntry('beg_ral_en_notify', REQUEST_POST('beg_ral_en_notify')); + setConfigEntry('beg_ral_di_notify', REQUEST_POST('beg_ral_di_notify')); +} else { // Prepare constants for the template - define('__BEG_POINTS' , TRANSLATE_COMMA($CONFIG['beg_points'] , false)); - define('__BEG_POINTS_MAX' , TRANSLATE_COMMA($CONFIG['beg_points_max'] , false)); - define('__BEG_NOTIFY_BONUS' , TRANSLATE_COMMA($CONFIG['beg_notify_bonus'], false)); - define('__BEG_TIMEOUT' , CREATE_TIME_SELECTIONS($CONFIG['beg_timeout'] , "beg_timeout" , "Dhm")); - define('__BEG_UID_TIMEOUT' , CREATE_TIME_SELECTIONS($CONFIG['beg_uid_timeout'], "beg_uid_timeout", "Dhm")); - define('__BEG_REMOTE_IP_TIMEOUT', CREATE_TIME_SELECTIONS($CONFIG['beg_ip_timeout'] , "beg_ip_timeout" , "Dhm")); - define('__WAIT_SELECTION' , CREATE_TIME_SELECTIONS($CONFIG['beg_notify_wait'], "beg_notify_wait", "ms" )); - define('__BEG_RANKS', $CONFIG['beg_ranks']); + define('__BEG_POINTS' , TRANSLATE_COMMA(getConfig('beg_points') , false)); + define('__BEG_POINTS_MAX' , TRANSLATE_COMMA(getConfig('beg_points_max') , false)); + define('__BEG_NOTIFY_BONUS' , TRANSLATE_COMMA(getConfig('beg_notify_bonus'), false)); + define('__BEG_TIMEOUT' , CREATE_TIME_SELECTIONS(getConfig('beg_timeout') , "beg_timeout" , "Dhm")); + define('__BEG_UID_TIMEOUT' , CREATE_TIME_SELECTIONS(getConfig('beg_uid_timeout'), "beg_uid_timeout", "Dhm")); + define('__BEG_REMOTE_IP_TIMEOUT', CREATE_TIME_SELECTIONS(getConfig('beg_ip_timeout') , "beg_ip_timeout" , "Dhm")); + define('__WAIT_SELECTION' , CREATE_TIME_SELECTIONS(getConfig('beg_notify_wait'), "beg_notify_wait", "ms" )); + define('__BEG_RANKS' , getConfig('beg_ranks')); // Activate / Deactivate beg rallye (Y/N) - switch ($CONFIG['beg_rallye']) + switch (getConfig('beg_rallye')) { case 'Y': - define('__BEG_RALLYE_Y', " checked"); - define('__BEG_RALLYE_N', ""); + define('__BEG_RALLYE_Y', ' chkecked="checked"'); + define('__BEG_RALLYE_N', ''); break; case 'N': - define('__BEG_RALLYE_Y', ""); - define('__BEG_RALLYE_N', " checked"); + define('__BEG_RALLYE_Y', ''); + define('__BEG_RALLYE_N', ' chkecked="checked"'); break; } - switch ($CONFIG['beg_active']) + + switch (getConfig('beg_active')) { case 'Y': - define('__BEG_ACTIVE_Y', " checked"); - define('__BEG_ACTIVE_N', ""); + define('__BEG_ACTIVE_Y', ' chkecked="checked"'); + define('__BEG_ACTIVE_N', ''); break; case 'N': - define('__BEG_ACTIVE_Y', ""); - define('__BEG_ACTIVE_N', " checked"); + define('__BEG_ACTIVE_Y', ''); + define('__BEG_ACTIVE_N', ' chkecked="checked"'); break; } - switch ($CONFIG['beg_mode']) + + switch (getConfig('beg_mode')) { case "DIRECT": - define('__BEG_MODE_DIRECT', " checked"); - define('__BEG_MODE_REF' , ""); + define('__BEG_MODE_DIRECT', ' chkecked="checked"'); + define('__BEG_MODE_REF' , ''); break; case "REF": - define('__BEG_MODE_DIRECT', ""); - define('__BEG_MODE_REF' , " checked"); + define('__BEG_MODE_DIRECT', ''); + define('__BEG_MODE_REF' , ' chkecked="checked"'); break; } - switch ($CONFIG['beg_ral_en_notify']) + + switch (getConfig('beg_ral_en_notify')) { case 'Y': - define('__BEG_RAL_EN_NOTIFY_Y', " checked"); - define('__BEG_RAL_EN_NOTIFY_N', ""); + define('__BEG_RAL_EN_NOTIFY_Y', ' chkecked="checked"'); + define('__BEG_RAL_EN_NOTIFY_N', ''); break; case 'N': - define('__BEG_RAL_EN_NOTIFY_Y', ""); - define('__BEG_RAL_EN_NOTIFY_N', " checked"); + define('__BEG_RAL_EN_NOTIFY_Y', ''); + define('__BEG_RAL_EN_NOTIFY_N', ' chkecked="checked"'); break; } - switch ($CONFIG['beg_ral_di_notify']) + + switch (getConfig('beg_ral_di_notify')) { case 'Y': - define('__BEG_RAL_DI_NOTIFY_Y', " checked"); - define('__BEG_RAL_DI_NOTIFY_N', ""); + define('__BEG_RAL_DI_NOTIFY_Y', ' chkecked="checked"'); + define('__BEG_RAL_DI_NOTIFY_N', ''); break; case 'N': - define('__BEG_RAL_DI_NOTIFY_Y', ""); - define('__BEG_RAL_DI_NOTIFY_N', " checked"); + define('__BEG_RAL_DI_NOTIFY_Y', ''); + define('__BEG_RAL_DI_NOTIFY_N', ' chkecked="checked"'); break; } - switch ($CONFIG['beg_new_mem_notify']) + + switch (getConfig('beg_new_mem_notify')) { case 'Y': - define('__BEG_NEW_MEMBER_NOTIFY_Y', " checked"); - define('__BEG_NEW_MEMBER_NOTIFY_N', ""); + define('__BEG_NEW_MEMBER_NOTIFY_Y', ' chkecked="checked"'); + define('__BEG_NEW_MEMBER_NOTIFY_N', ''); break; case 'N': - define('__BEG_NEW_MEMBER_NOTIFY_Y', ""); - define('__BEG_NEW_MEMBER_NOTIFY_N', " checked"); + define('__BEG_NEW_MEMBER_NOTIFY_Y', ''); + define('__BEG_NEW_MEMBER_NOTIFY_N', ' chkecked="checked"'); break; } - switch ($CONFIG['beg_include_own']) + + switch (getConfig('beg_include_own')) { case 'Y': - define('__BEG_INCLUDE_OWN_Y', " checked"); - define('__BEG_INCLUDE_OWN_N', ""); + define('__BEG_INCLUDE_OWN_Y', ' chkecked="checked"'); + define('__BEG_INCLUDE_OWN_N', ''); break; case 'N': - define('__BEG_INCLUDE_OWN_Y', ""); - define('__BEG_INCLUDE_OWN_N', " checked"); + define('__BEG_INCLUDE_OWN_Y', ''); + define('__BEG_INCLUDE_OWN_N', ' chkecked="checked"'); break; } + switch (getConfig('beg_pay_mode')) { + case "IMG": + define('__BEG_PAY_MODE_IMG' , ' selected="selected"'); + define('__BEG_PAY_MODE_JS' , ''); + define('__BEG_PAY_MODE_BOTH', ''); + define('__BEG_PAY_MODE_NONE', ''); + break; + + case "JS": + define('__BEG_PAY_MODE_IMG' , ''); + define('__BEG_PAY_MODE_JS' , ' selected="selected"'); + define('__BEG_PAY_MODE_BOTH', ''); + define('__BEG_PAY_MODE_NONE', ''); + break; + + case "BOTH": + define('__BEG_PAY_MODE_IMG' , ''); + define('__BEG_PAY_MODE_JS' , ''); + define('__BEG_PAY_MODE_BOTH', ' selected="selected"'); + define('__BEG_PAY_MODE_NONE', ''); + break; + + case "NONE": + define('__BEG_PAY_MODE_IMG' , ''); + define('__BEG_PAY_MODE_JS' , ''); + define('__BEG_PAY_MODE_BOTH', ''); + define('__BEG_PAY_MODE_NONE', ' selected="selected"'); + break; + } + // Add data to constant __MEMBER_SELECTION - ADD_MEMBER_SELECTION_BOX(false, true, true, $CONFIG['beg_uid']); + define('__MEMBER_SELECTION', ADD_MEMBER_SELECTION_BOX(getConfig('beg_uid'), false, true, true, "beg_uid")); // Load form template LOAD_TEMPLATE("admin_config_beg"); } + // ?>