A lot double-quotes rewritten to single-quotes, some redirect URLs fixed
[mailer.git] / inc / modules / admin / what-config_removeip.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/01/2008 *
4  * ================                             Last change: 10/01/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_removeip.php                         *
8  * -------------------------------------------------------------------- *
9  * Short description : Configuration for the caching system             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Konfiguration des Caching-Systems                *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
47
48 if (IS_FORM_SENT()) {
49         // Save configuration
50         ADMIN_SAVE_SETTINGS_POST();
51 } else {
52         // Prepare data
53         switch (getConfig('removeip_anon_ip')) {
54                 case 'Y':
55                         define('__CFG_REMOVEIP_ANON_IP_Y', ' chkecked="checked"');
56                         define('__CFG_REMOVEIP_ANON_IP_N', '');
57                         break;
58
59                 case 'N':
60                         define('__CFG_REMOVEIP_ANON_IP_Y', '');
61                         define('__CFG_REMOVEIP_ANON_IP_N', ' chkecked="checked"');
62                         break;
63         } // END - switch
64
65         switch (getConfig('removeip_anon_host')) {
66                 case 'Y':
67                         define('__CFG_REMOVEIP_ANON_HOST_Y', ' chkecked="checked"');
68                         define('__CFG_REMOVEIP_ANON_HOST_N', '');
69                         break;
70
71                 case 'N':
72                         define('__CFG_REMOVEIP_ANON_HOST_Y', '');
73                         define('__CFG_REMOVEIP_ANON_HOST_N', ' chkecked="checked"');
74                         break;
75         } // END - switch
76
77         switch (getConfig('removeip_anon_ua')) {
78                 case 'Y':
79                         define('__CFG_REMOVEIP_ANON_UA_Y', ' chkecked="checked"');
80                         define('__CFG_REMOVEIP_ANON_UA_N', '');
81                         break;
82
83                 case 'N':
84                         define('__CFG_REMOVEIP_ANON_UA_Y', '');
85                         define('__CFG_REMOVEIP_ANON_UA_N', ' chkecked="checked"');
86                         break;
87         } // END - switch
88
89         switch (getConfig('removeip_anon_ref')) {
90                 case 'Y':
91                         define('__CFG_REMOVEIP_ANON_REF_Y', ' chkecked="checked"');
92                         define('__CFG_REMOVEIP_ANON_REF_N', '');
93                         break;
94
95                 case 'N':
96                         define('__CFG_REMOVEIP_ANON_REF_Y', '');
97                         define('__CFG_REMOVEIP_ANON_REF_N', ' chkecked="checked"');
98                         break;
99         } // END - switch
100
101         switch (getConfig('removeip_admin_show')) {
102                 case 'Y':
103                         define('__CFG_REMOVEIP_ADMIN_SHOW_Y', ' chkecked="checked"');
104                         define('__CFG_REMOVEIP_ADMIN_SHOW_N', '');
105                         break;
106
107                 case 'N':
108                         define('__CFG_REMOVEIP_ADMIN_SHOW_Y', '');
109                         define('__CFG_REMOVEIP_ADMIN_SHOW_N', ' chkecked="checked"');
110                         break;
111         } // END - switch
112
113         switch (getConfig('removeip_guest_show')) {
114                 case 'Y':
115                         define('__CFG_REMOVEIP_GUEST_SHOW_Y', ' chkecked="checked"');
116                         define('__CFG_REMOVEIP_GUEST_SHOW_N', '');
117                         break;
118
119                 case 'N':
120                         define('__CFG_REMOVEIP_GUEST_SHOW_Y', '');
121                         define('__CFG_REMOVEIP_GUEST_SHOW_N', ' chkecked="checked"');
122                         break;
123         } // END - switch
124
125         switch (getConfig('removeip_member_show')) {
126                 case 'Y':
127                         define('__CFG_REMOVEIP_MEMBER_SHOW_Y', ' chkecked="checked"');
128                         define('__CFG_REMOVEIP_MEMBER_SHOW_N', '');
129                         break;
130
131                 case 'N':
132                         define('__CFG_REMOVEIP_MEMBER_SHOW_Y', '');
133                         define('__CFG_REMOVEIP_MEMBER_SHOW_N', ' chkecked="checked"');
134                         break;
135         } // END - switch
136
137         switch (getConfig('removeip_sponsor_show')) {
138                 case 'Y':
139                         define('__CFG_REMOVEIP_SPONSOR_SHOW_Y', ' chkecked="checked"');
140                         define('__CFG_REMOVEIP_SPONSOR_SHOW_N', '');
141                         break;
142
143                 case 'N':
144                         define('__CFG_REMOVEIP_SPONSOR_SHOW_Y', '');
145                         define('__CFG_REMOVEIP_SPONSOR_SHOW_N', ' chkecked="checked"');
146                         break;
147         } // END - switch
148
149         switch (getConfig('anonymous_ip')) {
150                 case "127.0.0.1":
151                         define('__CFG_ANONYMOUS_IP_LOCAL' , " selected=\"selected\"");
152                         define('__CFG_ANONYMOUS_IP_ZERO'  , '');
153                         define('__CFG_ANONYMOUS_IP_RANDOM', '');
154                         break;
155
156                 case "0.0.0.0":
157                         define('__CFG_ANONYMOUS_IP_LOCAL' , '');
158                         define('__CFG_ANONYMOUS_IP_ZERO'  , " selected=\"selected\"");
159                         define('__CFG_ANONYMOUS_IP_RANDOM', '');
160                         break;
161
162                 case "RANDOM":
163                         define('__CFG_ANONYMOUS_IP_LOCAL' , '');
164                         define('__CFG_ANONYMOUS_IP_ZERO'  , '');
165                         define('__CFG_ANONYMOUS_IP_RANDOM', " selected=\"selected\"");
166                         break;
167         } // END - switch
168
169         // Load template
170         LOAD_TEMPLATE("admin_config_removeip");
171 }
172 //
173 ?>