Several double->single convertions, fix for missing constant '_MYSQL_PREFIX' which...
[mailer.git] / inc / modules / admin / what-config_cache.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 01/29/2006 *
4  * ================                             Last change: 01/29/2006 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_cache.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 } // END - if
44
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
47
48 if (isFormSent()) {
49         // Cache path has been not changed by default so don't test it again
50         REQUEST_SET_POST('cache_tested', 'N');
51
52         // Check if path has been changed
53         if (REQUEST_POST('cache_path') != getConfig('cache_path')) {
54                 // Okay, cache path has been altered so we have to test it again!
55                 REQUEST_SET_POST('cache_tested', 'Y');
56         } // END - if
57
58         if ((REQUEST_POST('cache_admins') == 'N') && ($GLOBALS['cache_instance']->loadCacheFile('admins'))) {
59                 $GLOBALS['cache_instance']->destroyCacheFile();
60         } // END - if
61
62         if ((REQUEST_POST('cache_acls') == 'N') && ($GLOBALS['cache_instance']->loadCacheFile('acls'))) {
63                 $GLOBALS['cache_instance']->destroyCacheFile();
64         } // END - if
65
66         if ((REQUEST_POST('cache_exts') == 'N') && ($GLOBALS['cache_instance']->loadCacheFile('extensions', true))) {
67                 $GLOBALS['cache_instance']->destroyCacheFile();
68         } // END - if
69
70         if ((REQUEST_POST('cache_config') == 'N') && ($GLOBALS['cache_instance']->loadCacheFile('config'))) {
71                 $GLOBALS['cache_instance']->destroyCacheFile();
72         } // END - if
73
74         if ((REQUEST_POST('cache_modreg') == 'N') && ($GLOBALS['cache_instance']->loadCacheFile('modreg'))) {
75                 $GLOBALS['cache_instance']->destroyCacheFile();
76         } // END - if
77
78         if ((REQUEST_POST('cache_refdepth') == 'N') && ($GLOBALS['cache_instance']->loadCacheFile('refdepth'))) {
79                 $GLOBALS['cache_instance']->destroyCacheFile();
80         } // END - if
81
82         if ((REQUEST_POST('cache_refsys') == 'N') && ($GLOBALS['cache_instance']->loadCacheFile('refsys'))) {
83                 $GLOBALS['cache_instance']->destroyCacheFile();
84         } // END - if
85
86         // Save configuration
87         ADMIN_SAVE_SETTINGS_POST();
88 } else {
89         // Prepare data
90         // @TODO Rewrite all constants
91         switch (getConfig('cache_admins')) {
92                 case 'Y':
93                         define('__ADMINS_Y', ' checked="checked"');
94                         define('__ADMINS_N', '');
95                         break;
96
97                 case 'N':
98                         define('__ADMINS_Y', '');
99                         define('__ADMINS_N', ' checked="checked"');
100                         break;
101         } // END - switch
102
103         switch (getConfig('cache_acls')) {
104                 case 'Y':
105                         define('__ACLS_Y', ' checked="checked"');
106                         define('__ACLS_N', '');
107                         break;
108
109                 case 'N':
110                         define('__ACLS_Y', '');
111                         define('__ACLS_N', ' checked="checked"');
112                         break;
113         } // END - switch
114
115         switch (getConfig('cache_exts')) {
116                 case 'Y':
117                         define('__EXTS_Y', ' checked="checked"');
118                         define('__EXTS_N', '');
119                         break;
120
121                 case 'N':
122                         define('__EXTS_Y', '');
123                         define('__EXTS_N', ' checked="checked"');
124                         break;
125         } // END - switch
126
127         switch (getConfig('cache_config')) {
128                 case 'Y':
129                         define('__CONFIG_Y', ' checked="checked"');
130                         define('__CONFIG_N', '');
131                         break;
132
133                 case 'N':
134                         define('__CONFIG_Y', '');
135                         define('__CONFIG_N', ' checked="checked"');
136                         break;
137         } // END - switch
138
139         switch (getConfig('cache_modreg')) {
140                 case 'Y':
141                         define('__MODREG_Y', ' checked="checked"');
142                         define('__MODREG_N', '');
143                         break;
144
145                 case 'N':
146                         define('__MODREG_Y', '');
147                         define('__MODREG_N', ' checked="checked"');
148                         break;
149         } // END - switch
150
151         switch (getConfig('cache_refdepth')) {
152                 case 'Y':
153                         define('__REFDEPTH_Y', ' checked="checked"');
154                         define('__REFDEPTH_N', '');
155                         break;
156
157                 case 'N':
158                         define('__REFDEPTH_Y', '');
159                         define('__REFDEPTH_N', ' checked="checked"');
160                         break;
161         } // END - switch
162
163         switch (getConfig('cache_refsys')) {
164                 case 'Y':
165                         define('__REFSYS_Y', ' checked="checked"');
166                         define('__REFSYS_N', '');
167                         break;
168
169                 case 'N':
170                         define('__REFSYS_Y', '');
171                         define('__REFSYS_N', ' checked="checked"');
172                         break;
173         } // END - switch
174
175         switch (getConfig('cache_themes')) {
176                 case 'Y':
177                         define('__THEMES_Y', ' checked="checked"');
178                         define('__THEMES_N', '');
179                         break;
180
181                 case 'N':
182                         define('__THEMES_Y', '');
183                         define('__THEMES_N', ' checked="checked"');
184                         break;
185         } // END - switch
186
187         switch (getConfig('cache_admin_menu')) {
188                 case 'Y':
189                         define('__ADMIN_MENU_Y', ' checked="checked"');
190                         define('__ADMIN_MENU_N', '');
191                         break;
192
193                 case 'N':
194                         define('__ADMIN_MENU_Y', '');
195                         define('__ADMIN_MENU_N', ' checked="checked"');
196                         break;
197         } // END - switch
198
199         define('__PATH', getConfig('cache_path'));
200
201         // Load template
202         LOAD_TEMPLATE('admin_config_cache');
203 }
204
205 //
206 ?>