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