8520a0993ec65bfd72eab723c3cecd599eefa520
[mailer.git] / inc / extensions / ext-other.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/19/2004 *
4  * ================                             Last change: 10/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-other.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Other administrative settings                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Weitere administrative Einstellungen             *
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')) {
41         die();
42 } // END - if
43
44 // Version number
45 setThisExtensionVersion('0.2.3');
46
47 // Version history array (add more with , '0.1.0' and so on)
48 setExtensionVersionHistory(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', '0.1.4', '0.1.5', '0.1.6', '0.1.7', '0.1.8', '0.1.9', '0.2.0', '0.2.1', '0.2.2', '0.2.3'));
49
50 // Keep this extension always active!
51 setExtensionAlwaysActive('Y');
52
53 switch (getExtensionMode()) {
54         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
55                 // SQL commands to run
56                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('setup','config_other','Sonstige Einstellungen','Sonstige Einstellungen an Ihrem Mailtausch.',13)");
57                 break;
58
59         case 'remove': // Do stuff when removing extension
60                 // SQL commands to run
61                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_other'");
62                 break;
63
64         case 'activate': // Do stuff when admin activates this extension
65                 // SQL commands to run
66                 addExtensionSql('');
67                 break;
68
69         case 'deactivate': // Do stuff when admin deactivates this extension
70                 // SQL commands to run
71                 addExtensionSql('');
72                 break;
73
74         case 'update': // Update an extension
75                 switch (getCurrentExtensionVersion()) {
76                         case '0.0.1': // SQL queries for v0.0.1
77                                 // Update notes (these will be set as task text!)
78                                 setExtensionUpdateNotes("Fehler <div class=\"admin_failed\">Warning: Missing argument 2 for create_timestamp_from_selections() in {?PATH?}inc/libs/pro_functions.php on line 227</div> behoben.");
79                                 break;
80
81                         case '0.0.2': // SQL queries for v0.0.2
82                                 // Update notes (these will be set as task text!)
83                                 setExtensionUpdateNotes("Speichern der Einstellungen vereinfacht. Es wird dazu die Funktion adminSaveSettings() verwendet.");
84                                 break;
85
86                         case '0.0.3': // SQL queries for v0.0.3
87                                 // Update notes (these will be set as task text!)
88                                 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
89                                 break;
90
91                         case '0.0.4': // SQL queries for v0.0.4
92                                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD max_comma TINYINT(3) UNSIGNED NOT NULL DEFAULT '3'");
93
94                                 // Update notes (these will be set as task text!)
95                                 setExtensionUpdateNotes("Angezeigte Kommastellen k&ouml;nnen zwischen 0 und 5 eingestellt werden.");
96                                 break;
97
98                         case '0.0.5': // SQL queries for v0.0.5
99                                 // Update notes (these will be set as task text!)
100                                 setExtensionUpdateNotes("Problem mit Speicherung der Einstellungen beseitigt.");
101                                 break;
102
103                         case '0.0.6': // SQL queries for v0.0.6
104                                 // Update notes (these will be set as task text!)
105                                 setExtensionUpdateNotes("Problem mit Speicherung der Einstellungen endlich beseitigt.");
106                                 break;
107
108                         case '0.0.7': // SQL queries for v0.0.7
109                                 // Update notes (these will be set as task text!)
110                                 setExtensionUpdateNotes("Ausgabemodus der CSS-Dateien hinzugef&uuml;gt. Bitte auch das Admin-Template aktualisieren!");
111                                 break;
112
113                         case '0.0.8': // SQL queries for v0.0.8
114                                 // Update notes (these will be set as task text!)
115                                 setExtensionUpdateNotes("Erweiterung bleibt wegen integrierten Schalters immer aktiv.");
116                                 break;
117
118                         case '0.0.9': // SQL queries for v0.0.9
119                                 // Update notes (these will be set as task text!)
120                                 setExtensionUpdateNotes("Abspeichern der Einstellungen repariert.");
121                                 break;
122
123                         case '0.1.0': // SQL queries for v0.2.1
124                                 // Update notes (these will be set as task text!)
125                                 setExtensionUpdateNotes("Folgende Einstellungen k&ouml;nnen auf 0 gesetzt werden:
126 <ol>
127 <li>Selbe beworbene URL nicht mehr bewerbar (0 = URL kann sofort wieder gebucht werden)</li>
128 <li>G&uuml;tigkeitsdauer der Best&auml;tigungslinks (0 = Best&auml;tigungslinks laufen nie ab)</li>
129 <li>Sperrzeit des Mitgliedprofiles nach &Auml;nderung (0 = Mitglied kann sein Account immer und sofort &auml;ndern)</li>
130 <li>Profilaktualisierungsinterval (0 = Es wird keine Mail zum Profilaktualisierunng durch das Mitglied ausgesendet(</li>
131 <li>Erneute Aussendung der Mail (0 = Siehe oben)</li>
132 </ol>");
133                                 break;
134
135                         case '0.1.1': // SQL queries for v0.1.1
136                                 // Update notes (these will be set as task text!)
137                                 setExtensionUpdateNotes("Gast- und Mitgliedsmen&uuml;s lassen sich voneinander getrentt ein- und auschalten.");
138                                 break;
139
140                         case '0.1.2': // SQL queries for v0.1.2
141                                 // Update notes (these will be set as task text!)
142                                 setExtensionUpdateNotes("W&ouml;rter <strong>Mailtausch</strong>, <strong>Mailtausches</strong> und <strong>Mailtauscher</strong> sind austauschbar.");
143                                 break;
144
145                         case '0.1.3': // SQL queries for v0.1.3
146                                 // Update notes (these will be set as task text!)
147                                 setExtensionUpdateNotes("Wort &quot;Baustelle&quot; vom Auto-Versand entfernt, da dieser nun klappt.");
148                                 break;
149
150                         case '0.1.4': // SQL queries for v0.1.4
151                                 // Update notes (these will be set as task text!)
152                                 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
153                                 break;
154
155                         case '0.1.5': // SQL queries for v0.1.5
156                                 // Update notes (these will be set as task text!)
157                                 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
158                                 break;
159
160                         case '0.1.6': // SQL queries for v0.1.6
161                                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD reject_url VARCHAR(255) NOT NULL DEFAULT '{?URL?}'");
162
163                                 // Update notes (these will be set as task text!)
164                                 setExtensionUpdateNotes("Bei Ablehnung der URL wird jetzt endlich eine Standart-URL eingesetzt, die konfigurierbar ist. Fehler beim Laden der Konfiguration gefunden.");
165                                 break;
166
167                         case '0.1.7': // SQL queries for v0.1.7
168                                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD currency VARCHAR(255) NOT NULL DEFAULT '&euro;'");
169
170                                 // Update notes (these will be set as task text!)
171                                 setExtensionUpdateNotes("Standart-W&auml;hrung der Geb&uuml;hren f&uuml;r alle Erweiterungen geltend hinzugef&uuml;gt.");
172                                 break;
173
174                         case '0.1.8': // SQL queries for v0.1.8
175                                 // Update notes (these will be set as task text!)
176                                 setExtensionUpdateNotes("Die sonstigen Einstellungen lassen sich nun nur noch &auml;ndern, wenn die Erweiterung <strong>other</strong> auch installiert ist. Anderfalls gibt es einen SQL-Fehler beim Speichern und GROSS_GESCHRIEBENE Worte im Formular.");
177                                 break;
178
179                         case '0.1.9': // SQL queries for v0.1.9
180                                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD mailid_error_redirect ENUM('index','reject') NOT NULL DEFAULT 'index'");
181
182                                 // Update notes (these will be set as task text!)
183                                 setExtensionUpdateNotes("Bei fehlerhafter Mail w&auml;hrend der Best&auml;tigung kann wahlweise zur Hauptseite weitergeleitet oder auf die eingestellte Ablehnungsseite umgeleitet werden.");
184                                 break;
185
186                         case '0.2.0': // SQL queries for v0.2.0
187                                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` CHANGE `mailid_error_redirect` `mailid_error_redirect` ENUM('INDEX','REJECT') NOT NULL DEFAULT 'INDEX'");
188
189                                 // Update notes (these will be set as task text!)
190                                 setExtensionUpdateNotes("Bei fehlerhafter Mail w&auml;hrend der Best&auml;tigung kann wahlweise zur Hauptseite weitergeleitet oder auf die eingestellte Ablehnungsseite umgeleitet werden.");
191                                 break;
192
193                         case '0.2.1': // SQL queries for v0.2.1
194                                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `min_age` TINYINT(3) UNSIGNED NOT NULL DEFAULT 16");
195
196                                 // Update notes (these will be set as task text!)
197                                 setExtensionUpdateNotes("Minimumalter ist nun konfigurierbar.");
198                                 break;
199
200                         case '0.2.2': // SQL queries for v0.2.2
201                                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `display_debug_sqls` ENUM('N','Y') NOT NULL DEFAULT 'N'");
202
203                                 // Update notes (these will be set as task text!)
204                                 setExtensionUpdateNotes("(Fast) alle SQL-Abfragen lassen sich nun zu Debugging-Zwecken (!) einschalten. Nur der Administrator sieht diese unten am Ende der Seite.");
205                                 break;
206
207                         case '0.2.3': // SQL queries for v0.2.3
208                                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `max_send` BIGINT(20) NOT NULL DEFAULT 10");
209
210                                 // Update notes (these will be set as task text!)
211                                 setExtensionUpdateNotes("Fehlende Konfiguration hinzugef&uuml;gt.");
212                                 break;
213                 }
214                 break;
215
216         case 'modify': // When the extension got modified
217                 break;
218
219         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
220                 break;
221
222         case 'init': // Do stuff when extension is initialized
223                 break;
224
225         default: // Unknown extension mode
226                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
227                 break;
228 }
229
230 // [EOF]
231 ?>