Even more fixes/improvements for rallye
[mailer.git] / inc / modules / admin / what-config_rewrite.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 02/12/2004 *
4  * ================                             Last change: 02/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_rewrite.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Rewrite-Engine configuration                     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Rewrite-Engine Konfiguration                     *
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 - 2009 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')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 if (isFormSent()) {
48         // Generate string
49         $MODs = array();
50         foreach (postRequestElement('mod') as $mod => $sel) {
51                 // Now you can never deselect the admin module, bah!!! ;-)
52                 if (($sel == 'Y') || ($mod == 'admin')) {
53                         // Add module to queue
54                         $MODs[] = $mod;
55                 }
56         }
57
58         // Implode array to string and remove posted mod array
59         setRequestPostElement('rewrite_skip', implode(':', $MODs));
60         unsetPostRequestElement('mod');
61
62         // Save settings
63         adminSaveSettingsFromPostData();
64 } else {
65         // Load existing modules and generate TR rows for the template
66         $result = SQL_QUERY("SELECT module, title FROM `{?_MYSQL_PREFIX?}_mod_reg` ORDER BY module", __FILE__, __LINE__);
67         $OUT = ''; $SW = 2;
68         while ($content = SQL_FETCHARRAY($result)) {
69                 // Set title to three dashes when no title is supplied
70                 if (empty($content['title'])) $content['title'] = '---';
71
72                 // Already registered module?
73                 if (ereg($content['module'], getConfig('rewrite_skip'))) {
74                         // Found
75                         $y = ' checked="checked"';
76                         $n = '';
77                 } else {
78                         // Not found
79                         $y = '';
80                         $n = ' checked="checked"';
81                 }
82
83                 // Remember data in array for the dynamic row template
84                 $content['y_default'] = $y;
85                 $content['n_default'] = $n;
86                 $content['sw']        = $SW;
87
88                 // Load template and switch colors
89                 $OUT .= loadTemplate('admin_config_rewrite_rows', true, $content);
90                 $SW = 3 - $SW;
91         }
92
93         // Free memory
94         SQL_FREERESULT($result);
95
96         // Load main template
97         loadTemplate('admin_config_rewrite', false, $OUT);
98 }
99
100 // [EOF]
101 ?>