Several more constants rewritten to getConfig()
[mailer.git] / inc / extensions / ext-rewrite.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/24/2004 *
4  * ================                             Last change: 08/28/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-rewrite.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Rewrites own links for search engines            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Schreibt eigene Links um fuer Suchmaschinen      *
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')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Version number
46 EXT_SET_VERSION('0.1.3');
47
48 // Version history array (add more with , '0.1.0' and so on)
49 EXT_SET_VER_HISTORY(array('0.0', '0.0.1', '0.0.2', '0.0.3', '0.0.4', '0.0.5', '0.0.6', '0.0.7', '0.0.8', '0.0.9', '0.1.0', '0.1.1', '0.1.2', '0.1.3'));
50
51 // This extension is deprecated!
52 // Only since 'seo' is ready! EXT_SET_DEPRECATED('Y');
53
54 switch ($EXT_LOAD_MODE)
55 {
56         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
57                 // Check if mod_rewrite is loadeded
58                 if (!isApacheModuleLoaded('mod_rewrite')){
59                         EXT_SET_REPORTS_FAILURE(true);
60                         addFatalMessage(__FILE__, __LINE__, getMessage('MOD_REWRITE_ERROR'));
61                 } // END - if
62
63                 // SQL commands to run
64                 ADD_EXT_SQL('');
65                 break;
66
67         case 'remove': // Do stuff when removing extension
68                 // SQL commands to run
69                 ADD_EXT_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE `what`='config_rewrite'");
70                 break;
71
72         case 'activate': // Do stuff when admin activates this extension
73                 // Check if mod_rewrite is loadeded
74                 if (!isApacheModuleLoaded('mod_rewrite')) {
75                         SQL_QUERY("UPDATE `{!_MYSQL_PREFIX!}_extensions` SET `ext_active`='N' WHERE `ext_name`='rewrite' LIMIT 1", __FILE__, __LINE__);
76                         EXT_SET_REPORTS_FAILURE(true);
77                         addFatalMessage(__FILE__, __LINE__, getMessage('MOD_REWRITE_ERROR'));
78          } // END - if
79
80          // SQL commands to run
81          ADD_EXT_SQL('');
82          break;
83
84         case 'deactivate': // Do stuff when admin deactivates this extension
85                 // SQL commands to run
86                 ADD_EXT_SQL('');
87                 break;
88
89         case 'update': // Update an extension
90                 switch ($EXT_VER)
91                 {
92                         case '0.0.1': // SQL queries for v0.0.1
93                                 // Update notes (these will be set as task text!)
94                                 EXT_SET_UPDATE_NOTES("Folgende Linkvariablen werden nun auch ausgetauscht: bid, mid, url, page, offset");
95                                 break;
96
97                         case '0.0.2': // SQL queries for v0.0.2
98                                 // Update notes (these will be set as task text!)
99                                 EXT_SET_UPDATE_NOTES("Folgende Linkvariablen werden nun auch ausgetauscht: type, do=search");
100
101                         case '0.0.3': // SQL queries for v0.0.3
102                                 // Update notes (these will be set as task text!)
103                                 EXT_SET_UPDATE_NOTES("URLs zu MXChange.org ({?SERVER_URL?}) sind nun auch wieder g&uuml;ltig.");
104                                 break;
105
106                         case '0.0.4': // SQL queries for v0.0.4
107                                 // Update notes (these will be set as task text!)
108                                 EXT_SET_UPDATE_NOTES("Folgende Linkvariablen werden nun auch ausgetausch: sub, home");
109                                 break;
110
111                         case '0.0.5': // SQL queries for v0.0.5
112                                 // Update notes (these will be set as task text!)
113                                 EXT_SET_UPDATE_NOTES("Links im Admin- und Mitgliedsbereich werden nicht mehr umgeschrieben. Entsprechend f&auml;llt die neue .htaccess-Datei kleiner aus. Bitte anpassen!");
114
115                         case '0.0.6': // SQL queries for v0.0.6
116                                 // Update notes (these will be set as task text!)
117                                 EXT_SET_UPDATE_NOTES("Links im Frametester-Modul werden nicht mehr umgeschrieben.");
118                                 break;
119
120                         case '0.0.7': // SQL queries for v0.0.7
121                                 // Update notes (these will be set as task text!)
122                                 EXT_SET_UPDATE_NOTES("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
123                                 break;
124
125                         case '0.0.8': // SQL queries for v0.0.8
126                                 // Update notes (these will be set as task text!)
127                                 EXT_SET_UPDATE_NOTES("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
128                                 break;
129
130                         case '0.0.9': // SQL queries for v0.0.9
131                                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD rewrite_skip VARCHAR(255) NOT NULL DEFAULT 'login:admin:frametester:mailid'");
132                                 ADD_EXT_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('setup','config_rewrite','Rewrite-Engine','Stellen Sie hier ein, welche Module &uuml;bersprungen werden sollen, in denen also kein Umschreiben des HTML-Codes stattfinden soll.', 8)");
133
134                                 // Update notes (these will be set as task text!)
135                                 EXT_SET_UPDATE_NOTES("Zu &uuml;berspringende Module k&ouml;nnen per Admin-Bereich eingestellt werden.");
136                                 break;
137
138                         case '0.1.0': // SQL queries for v0.2.1
139                                 // Update notes (these will be set as task text!)
140                                 EXT_SET_UPDATE_NOTES("W&ouml;rter <strong>Mailtausch</strong>, <strong>Mailtausches</strong> und <strong>Mailtauscher</strong> sind austauschbar.");
141                                 break;
142
143                         case '0.1.1': // SQL queries for v0.1.1
144                                 // Update notes (these will be set as task text!)
145                                 EXT_SET_UPDATE_NOTES("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.");
146                                 break;
147
148                         case '0.1.2': // SQL queries for v0.1.2
149                                 // Update notes (these will be set as task text!)
150                                 EXT_SET_UPDATE_NOTES("Abspeichern von Einstellungen repariert.");
151                                 break;
152                         case '0.1.3':
153                                 // Check if mod_rewrite is loadeded
154                                 if (!isApacheModuleLoaded('mod_rewrite')){
155                                         EXT_SET_REPORTS_FAILURE(true);
156                                         //addFatalMessage(__FILE__, __LINE__, getMessage('MOD_REWRITE_ERROR'));
157                                 } // END - if
158                                 EXT_SET_UPDATE_NOTES("Es wird beim Registrieren und aktivieren gepr&uuml;ft, ob im Apache das Modul mod_rewrite geladen wurde. Wenn mod_rewrite nicht gefunden werden konnte, wird abgebrochen.");
159                                 break;
160                 }
161                 break;
162
163                         case 'modify': // When the extension got modified
164                                 break;
165
166                         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
167                                 break;
168
169                         default: // Do stuff when extension is loaded
170                                 // Check if mod_rewrite is loadeded
171                                 if (!isApacheModuleLoaded('mod_rewrite')){
172                                         EXT_SET_REPORTS_FAILURE(true);
173                                         SQL_QUERY("UPDATE `{!_MYSQL_PREFIX!}_extensions` SET `ext_active`='N' WHERE `ext_name`='rewrite' LIMIT 1", __FILE__, __LINE__);
174                                         if (!IS_ADMIN()) addFatalMessage(__FILE__, __LINE__, getMessage('MOD_REWRITE_ERROR'));
175                                 } // END - if
176                                 break;
177 }
178
179 //
180 ?>