X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_surfbar.php;h=cefac0ac8e0ddeba754f1ace3c5ca957c2211dd8;hb=1c3cf7c8bd60ea09a2b268e37a2cb2d0ee0cdeef;hp=0a3eb8bc07198fdb13f63909aed12d5251ea798d;hpb=143e78d4231adddd9e706cbf55ec5dd8c1651890;p=mailer.git diff --git a/inc/modules/admin/what-config_surfbar.php b/inc/modules/admin/what-config_surfbar.php index 0a3eb8bc07..cefac0ac8e 100644 --- a/inc/modules/admin/what-config_surfbar.php +++ b/inc/modules/admin/what-config_surfbar.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Konfiguration fuer Surfbar * * -------------------------------------------------------------------- * - * * + * $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 * + * 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 * @@ -32,103 +37,60 @@ ************************************************************************/ // 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(); } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +addMenuDescription('admin', __FILE__); // Was the form submitted? -if (isset($_POST['ok'])) { +if (isFormSent()) { // Replace german decimal comma with computer decimal dot - if (isset($_POST['surfbar_static_reward'])) $_POST['surfbar_static_reward'] = str_replace(",", ".", $_POST['surfbar_static_reward']); - if (isset($_POST['surfbar_static_costs'])) $_POST['surfbar_static_costs'] = str_replace(",", ".", $_POST['surfbar_static_costs']); - if (isset($_POST['surfbar_dynamic_percent'])) $_POST['surfbar_dynamic_percent'] = str_replace(",", ".", $_POST['surfbar_dynamic_percent']); + if (isPostRequestElementSet(('surfbar_static_reward'))) setRequestPostElement('surfbar_static_reward' , convertCommaToDot(postRequestElement('surfbar_static_reward'))); + if (isPostRequestElementSet(('surfbar_static_costs'))) setRequestPostElement('surfbar_static_costs' , convertCommaToDot(postRequestElement('surfbar_static_costs'))); + if (isPostRequestElementSet(('surfbar_dynamic_percent'))) setRequestPostElement('surfbar_dynamic_percent', convertCommaToDot(postRequestElement('surfbar_dynamic_percent'))); // Save settings - ADMIN_SAVE_SETTINGS($_POST); + adminSaveSettingsFromPostData(); } else { // Prepare content $content = array( - 'surfbar_static_reward' => TRANSLATE_COMMA($_CONFIG['surfbar_static_reward']), - 'surfbar_static_costs' => TRANSLATE_COMMA($_CONFIG['surfbar_static_costs']), - // @TODO Rewrite this to tiny selection boxes - 'surfbar_static_time' => $_CONFIG['surfbar_static_time'], - // @TODO Rewrite this to tiny selection boxes - 'surfbar_restart_time' => $_CONFIG['surfbar_restart_time'], - 'surfbar_static_lock' => $_CONFIG['surfbar_static_lock'], - 'surfbar_dynamic_percent' => TRANSLATE_COMMA($_CONFIG['surfbar_dynamic_percent']), - 'surfbar_max_order' => $_CONFIG['surfbar_max_order'], - // @TODO Rewrite this to tiny selection boxes - 'surfbar_stats_reload' => $_CONFIG['surfbar_stats_reload'], - // @TODO Rewrite this to tiny selection boxes - 'surfbar_purge_deleted' => $_CONFIG['surfbar_purge_deleted'], - // @TODO Rewrite this to tiny selection boxes - 'surfbar_purge_migrated' => $_CONFIG['surfbar_purge_migrated'], - 'surfbar_pause_url' => $_CONFIG['surfbar_pause_url'], - 'surfbar_warn_low_points' => $_CONFIG['surfbar_warn_low_points'] + 'surfbar_static_reward' => translateComma(getConfig('surfbar_static_reward')), + 'surfbar_static_costs' => translateComma(getConfig('surfbar_static_costs')), + 'surfbar_static_time' => createTimeSelections(getConfig('surfbar_static_time') , 'surfbar_static_time' , 'ms' , 'left'), + 'surfbar_static_lock' => createTimeSelections(getConfig('surfbar_static_lock') , 'surfbar_static_lock' , 'hm' , 'left'), + 'surfbar_restart_time' => createTimeSelections(getConfig('surfbar_restart_time') , 'surfbar_restart_time' , 'ms' , 'left'), + 'surfbar_dynamic_percent' => translateComma(getConfig('surfbar_dynamic_percent')), + 'surfbar_max_order' => getConfig('surfbar_max_order'), + 'surfbar_stats_reload' => createTimeSelections(getConfig('surfbar_stats_reload') , 'surfbar_stats_reload' , 'ms' , 'left'), + 'surfbar_purge_deleted' => createTimeSelections(getConfig('surfbar_purge_deleted') , 'surfbar_purge_deleted' , 'WDh', 'left'), + 'surfbar_purge_migrated' => createTimeSelections(getConfig('surfbar_purge_migrated'), 'surfbar_purge_migrated', 'WDh', 'left'), + 'surfbar_pause_url' => getConfig('surfbar_pause_url'), + 'surfbar_warn_low_points' => getConfig('surfbar_warn_low_points'), + 'surfbar_low_interval' => createTimeSelections(getConfig('surfbar_low_interval') , 'surfbar_low_interval' , 'WDh', 'left'), ); - // Prepare payment model for template - if ($_CONFIG['surfbar_pay_model'] == "STATIC") { - // Static model - define('__CONFIG_SURFBAR_PAY_MODEL_STATIC' , " checked=\"checked\""); - define('__CONFIG_SURFBAR_PAY_MODEL_DYNAMIC', ""); - } else { - // Dynamic model - define('__CONFIG_SURFBAR_PAY_MODEL_STATIC' , ""); - define('__CONFIG_SURFBAR_PAY_MODEL_DYNAMIC', " checked=\"checked\""); - } - - // Prepare auto-sart - if ($_CONFIG['surfbar_autostart'] == "Y") { - // Yes selected - define('__CONFIG_SURFBAR_AUTOSTART_Y' , " checked=\"checked\""); - define('__CONFIG_SURFBAR_AUTOSTART_N', ""); - } else { - // No selected - define('__CONFIG_SURFBAR_AUTOSTART_Y' , ""); - define('__CONFIG_SURFBAR_AUTOSTART_N', " checked=\"checked\""); - } - - // Prepare notify limits - if ($_CONFIG['surfbar_notify_limits'] == "Y") { - // Yes selected - define('__CONFIG_SURFBAR_NOTIFY_LIMITS_Y' , " checked=\"checked\""); - define('__CONFIG_SURFBAR_NOTIFY_LIMITS_N', ""); - } else { - // No selected - define('__CONFIG_SURFBAR_NOTIFY_LIMITS_Y' , ""); - define('__CONFIG_SURFBAR_NOTIFY_LIMITS_N', " checked=\"checked\""); - } + // Prepare further Y/N config entries + foreach (array('surfbar_autostart','surfbar_notify_limits','surfbar_notify_admin_unlock','surfbar_migrate_order','surfbar_guest_login_form') as $entry) { + $content[$entry . '_y'] = ''; + $content[$entry . '_n'] = ''; + $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"'; + } // END - foreach - // Prepare order migration - if ($_CONFIG['surfbar_migrate_order'] == "Y") { - // Yes selected - define('__CONFIG_SURFBAR_MIGRATE_ORDER_Y' , " checked=\"checked\""); - define('__CONFIG_SURFBAR_MIGRATE_ORDER_N', ""); - } else { - // No selected - define('__CONFIG_SURFBAR_MIGRATE_ORDER_Y' , ""); - define('__CONFIG_SURFBAR_MIGRATE_ORDER_N', " checked=\"checked\""); - } + // Even some more... + foreach (array('surfbar_pay_model_static','surfbar_pay_model_dynamic','surfbar_pause_mode_internal','surfbar_pause_mode_external','surfbar_notification_mode_instant','surfbar_notification_mode_reset') as $entry) { + $content[$entry] = ''; + } // END - if - // Pause URL mode - if ($_CONFIG['surfbar_pause_mode'] == "INTERNAL") { - // Internal pause page - define('__CONFIG_SURFBAR_PAUSE_MODE_INTERNAL', " checked=\"checked\""); - define('__CONFIG_SURFBAR_PAUSE_MODE_EXTERNAL', ""); - } else { - // External pause page (if not empty) - define('__CONFIG_SURFBAR_PAUSE_MODE_INTERNAL', ""); - define('__CONFIG_SURFBAR_PAUSE_MODE_EXTERNAL', " checked=\"checked\""); - } + // Prepare selections + foreach (array('surfbar_pay_model','surfbar_pause_mode','surfbar_notification_mode') as $entry) { + $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"'; + } // END - foreach // Load template - LOAD_TEMPLATE("admin_config_surfbar", false, $content); + loadTemplate('admin_config_surfbar', false, $content); } -// +// [EOF] ?>