9acbfcc727b1959b188efbb60b4a1a01da5e38bd
[mailer.git] / inc / extensions / html_mail / mode-update.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/01/2013 *
4  * ===================                          Last change: 06/01/2013 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mode-update.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : HTML mails with default mail() routine           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : HTML-Mails mit Standard mail()-Routine           *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // @TODO Remove double tabs from all lines
44                 switch (getCurrentExtensionVersion()) {
45                         case '0.0.6': // SQL queries for v0.0.6
46                                 // Update notes (these will be set as task text!)
47                                 setExtensionUpdateNotes("Der erstellte HTML-Code wird noch kompiliert (eigene HTML-Codes umgewandelt).");
48                                 break;
49
50                         case '0.0.8': // SQL queries for v0.0.8
51                                 // Update notes (these will be set as task text!)
52                                 setExtensionUpdateNotes("Fehlende Abfrage im Mitlieder-Modul, on Erweiterung auch aktiviert ist.");
53                                 break;
54
55                         case '0.0.9': // SQL queries for v0.0.9
56                                 // Update notes (these will be set as task text!)
57                                 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
58                                 break;
59
60                         case '0.1.0': // SQL queries for v0.2.1
61                                 // Update notes (these will be set as task text!)
62                                 setExtensionUpdateNotes("Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
63                                 break;
64
65                         case '0.1.1': // SQL queries for v0.1.1
66                                 // Update notes (these will be set as task text!)
67                                 setExtensionUpdateNotes("Seit <strong>Patch 340</strong> &uuml;berfl&uuml;ssige HTML-Tags entfernt.");
68                                 break;
69
70                         case '0.1.2': // SQL queries for v0.1.2
71                                 // Update notes (these will be set as task text!)
72                                 setExtensionUpdateNotes("W&ouml;rter <strong>{?mt_word?}</strong>, <strong>{?mt_word2?}</strong> und <strong>{?mt_word3?}</strong> sind austauschbar.");
73                                 break;
74
75                         case '0.1.3': // SQL queries for v0.1.3
76                                 // Update notes (these will be set as task text!)
77                                 setExtensionUpdateNotes("Sicherheitsupdate: SQL-Anweisungen gesch&uuml;tzt.");
78                                 break;
79
80                         case '0.1.4': // SQL queries for v0.1.4
81                                 // Update notes (these will be set as task text!)
82                                 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
83                                 break;
84
85                         case '0.1.5': // SQL queries for v0.1.5
86                                 // Update notes (these will be set as task text!)
87                                 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
88                                 break;
89
90                         case '0.1.6': // SQL queries for v0.1.6
91                                 // Dependency is needed for ext-registration!! (want to alter a non existent Table)
92                                 addExtensionDependency('bonus');
93
94                                 // Update notes (these will be set as task text!)
95                                 setExtensionUpdateNotes("Abh&auml;nigkeit von der Erweiterung <strong>bonus</strong> hinzugef&uuml;gt.");
96                                 break;
97
98                         case '0.1.7': // SQL queries for v0.1.7
99                                 // Register filter
100                                 registerFilter(__FILE__, __LINE__, 'pre_mail_order', 'CHECK_HTML_MAIL_ORDER', FALSE, TRUE, isExtensionDryRun());
101
102                                 // Update notes (these will be set as task text!)
103                                 setExtensionUpdateNotes("Filter f&uuml;r ext-order hinzugef&uuml;gt.");
104                                 break;
105
106                         case '0.1.8': // SQL queries for v0.1.8
107                                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `action`='account' WHERE `what`='html_mail' LIMIT 1");
108
109                                 // Update notes (these will be set as task text!)
110                                 setExtensionUpdateNotes("Auswahl im Mitglied verschoben nach &quot;Ihr Account&quot;.");
111                                 break;
112                 } // END - switch
113
114 // [EOF]
115 ?>