Entire rewrite of mail part in app! Not kidding here...
[mailer.git] / inc / modules / admin / what-config_surfbar.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/31/2008 *
4  * ================                             Last change: 08/31/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_surfbar.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Configuration for surfbar                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Konfiguration fuer Surfbar                       *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!is_admin())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 // Was the form submitted?
44 if (isset($_POST['ok'])) {
45         // Replace german decimal comma with computer decimal dot
46         if (isset($_POST['surfbar_static_reward']))   $_POST['surfbar_static_reward']   = str_replace(",", ".", $_POST['surfbar_static_reward']);
47         if (isset($_POST['surfbar_static_costs']))    $_POST['surfbar_static_costs']    = str_replace(",", ".", $_POST['surfbar_static_costs']);
48         if (isset($_POST['surfbar_dynamic_percent'])) $_POST['surfbar_dynamic_percent'] = str_replace(",", ".", $_POST['surfbar_dynamic_percent']);
49
50         // Save settings
51         ADMIN_SAVE_SETTINGS($_POST);
52 } else {
53         // Prepare content
54         $content = array(
55                 'surfbar_static_reward'   => TRANSLATE_COMMA($_CONFIG['surfbar_static_reward']),
56                 'surfbar_static_costs'    => TRANSLATE_COMMA($_CONFIG['surfbar_static_costs']),
57                 // @TODO Rewrite this to tiny selection boxes
58                 'surfbar_static_time'     => $_CONFIG['surfbar_static_time'],
59                 // @TODO Rewrite this to tiny selection boxes
60                 'surfbar_restart_time'    => $_CONFIG['surfbar_restart_time'],
61                 'surfbar_static_lock'     => $_CONFIG['surfbar_static_lock'],
62                 'surfbar_dynamic_percent' => TRANSLATE_COMMA($_CONFIG['surfbar_dynamic_percent']),
63                 'surfbar_max_order'       => $_CONFIG['surfbar_max_order'],
64                 // @TODO Rewrite this to tiny selection boxes
65                 'surfbar_stats_reload'    => $_CONFIG['surfbar_stats_reload'],
66                 // @TODO Rewrite this to tiny selection boxes
67                 'surfbar_purge_deleted'   => $_CONFIG['surfbar_purge_deleted'],
68                 // @TODO Rewrite this to tiny selection boxes
69                 'surfbar_purge_migrated'  => $_CONFIG['surfbar_purge_migrated'],
70                 'surfbar_pause_url'       => $_CONFIG['surfbar_pause_url'],
71                 'surfbar_warn_low_points' => $_CONFIG['surfbar_warn_low_points']
72         );
73
74         // Prepare payment model for template
75         if ($_CONFIG['surfbar_pay_model'] == "STATIC") {
76                 // Static model
77                 define('__CONFIG_SURFBAR_PAY_MODEL_STATIC' , " checked=\"checked\"");
78                 define('__CONFIG_SURFBAR_PAY_MODEL_DYNAMIC', "");
79         } else {
80                 // Dynamic model
81                 define('__CONFIG_SURFBAR_PAY_MODEL_STATIC' , "");
82                 define('__CONFIG_SURFBAR_PAY_MODEL_DYNAMIC', " checked=\"checked\"");
83         }
84
85         // Prepare auto-sart
86         if ($_CONFIG['surfbar_autostart'] == "Y") {
87                 // Yes selected
88                 define('__CONFIG_SURFBAR_AUTOSTART_Y' , " checked=\"checked\"");
89                 define('__CONFIG_SURFBAR_AUTOSTART_N', "");
90         } else {
91                 // No selected
92                 define('__CONFIG_SURFBAR_AUTOSTART_Y' , "");
93                 define('__CONFIG_SURFBAR_AUTOSTART_N', " checked=\"checked\"");
94         }
95
96         // Prepare notify limits
97         if ($_CONFIG['surfbar_notify_limits'] == "Y") {
98                 // Yes selected
99                 define('__CONFIG_SURFBAR_NOTIFY_LIMITS_Y' , " checked=\"checked\"");
100                 define('__CONFIG_SURFBAR_NOTIFY_LIMITS_N', "");
101         } else {
102                 // No selected
103                 define('__CONFIG_SURFBAR_NOTIFY_LIMITS_Y' , "");
104                 define('__CONFIG_SURFBAR_NOTIFY_LIMITS_N', " checked=\"checked\"");
105         }
106
107         // Prepare order migration
108         if ($_CONFIG['surfbar_migrate_order'] == "Y") {
109                 // Yes selected
110                 define('__CONFIG_SURFBAR_MIGRATE_ORDER_Y' , " checked=\"checked\"");
111                 define('__CONFIG_SURFBAR_MIGRATE_ORDER_N', "");
112         } else {
113                 // No selected
114                 define('__CONFIG_SURFBAR_MIGRATE_ORDER_Y' , "");
115                 define('__CONFIG_SURFBAR_MIGRATE_ORDER_N', " checked=\"checked\"");
116         }
117
118         // Pause URL mode
119         if ($_CONFIG['surfbar_pause_mode'] == "INTERNAL") {
120                 // Internal pause page
121                 define('__CONFIG_SURFBAR_PAUSE_MODE_INTERNAL', " checked=\"checked\"");
122                 define('__CONFIG_SURFBAR_PAUSE_MODE_EXTERNAL', "");
123         } else {
124                 // External pause page (if not empty)
125                 define('__CONFIG_SURFBAR_PAUSE_MODE_INTERNAL', "");
126                 define('__CONFIG_SURFBAR_PAUSE_MODE_EXTERNAL', " checked=\"checked\"");
127         }
128
129         // Load template
130         LOAD_TEMPLATE("admin_config_surfbar", false, $content);
131 }
132
133 //
134 ?>