Rewrite of adding menu entries, should prevent double menus now and forever...
[mailer.git] / inc / extensions / ext-html_mail.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 03/22/2004 *
4  * ================                             Last change: 05/02/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-html_mail.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : HTML mails with default mail() routine           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : HTML-Mails mit Standart mail()-Routine           *
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 }
43
44 // Version number
45 setThisExtensionVersion('0.1.6');
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.51', '0.0.52', '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'));
49
50 switch (getExtensionMode()) {
51         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
52                 // SQL commands to run
53                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_user_data` ADD html ENUM('Y','N') NOT NULL DEFAULT 'Y'");
54                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_bonus` ADD html_msg ENUM('Y','N') NOT NULL DEFAULT 'N'");
55                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_pool` ADD html_msg ENUM('Y','N') NOT NULL DEFAULT 'N'");
56                 addMemberMenuSql('main','html_mail','HTML-Empfang','N','Y',3);
57                 break;
58
59         case 'remove': // Do stuff when removing extension
60                 // SQL commands to run
61                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_user_data` DROP html");
62                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_bonus` DROP html_msg");
63                 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_pool` DROP html_msg");
64                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `what`='html_mail'");
65                 break;
66
67         case 'activate': // Do stuff when admin activates this extension
68                 // SQL commands to run
69                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='html_mail' LIMIT 1");
70                 break;
71
72         case 'deactivate': // Do stuff when admin deactivates this extension
73                 // SQL commands to run
74                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='html_mail' LIMIT 1");
75                 break;
76
77         case 'update': // Update an extension
78                 switch (getCurrentExtensionVersion()) {
79                         case '0.0.6': // SQL queries for v0.0.6
80                                 // Update notes (these will be set as task text!)
81                                 setExtensionUpdateNotes("Der erstellte HTML-Code wird noch kompiliert (eigene HTML-Codes umgewandelt).");
82                                 break;
83
84                         case '0.0.8': // SQL queries for v0.0.8
85                                 // Update notes (these will be set as task text!)
86                                 setExtensionUpdateNotes("Fehlende Abfrage im Mitlieder-Modul, on Erweiterung auch aktiviert ist.");
87                                 break;
88
89                         case '0.0.9': // SQL queries for v0.0.9
90                                 // Update notes (these will be set as task text!)
91                                 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
92                                 break;
93
94                         case '0.1.0': // SQL queries for v0.2.1
95                                 // Update notes (these will be set as task text!)
96                                 setExtensionUpdateNotes("Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
97                                 break;
98
99                         case '0.1.1': // SQL queries for v0.1.1
100                                 // Update notes (these will be set as task text!)
101                                 setExtensionUpdateNotes("Seit <strong>Patch 340</strong> &uuml;berfl&uuml;ssige HTML-Tags entfernt.");
102                                 break;
103
104                         case '0.1.2': // SQL queries for v0.1.2
105                                 // Update notes (these will be set as task text!)
106                                 setExtensionUpdateNotes("W&ouml;rter <strong>Mailtausch</strong>, <strong>Mailtausches</strong> und <strong>Mailtauscher</strong> sind austauschbar.");
107                                 break;
108
109                         case '0.1.3': // SQL queries for v0.1.3
110                                 // Update notes (these will be set as task text!)
111                                 setExtensionUpdateNotes("Sicherheitsupdate: SQL-Anweisungen gesch&uuml;tzt.");
112                                 break;
113
114                         case '0.1.4': // SQL queries for v0.1.4
115                                 // Update notes (these will be set as task text!)
116                                 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
117                                 break;
118
119                         case '0.1.5': // SQL queries for v0.1.5
120                                 // Update notes (these will be set as task text!)
121                                 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
122                                 break;
123
124                         case '0.1.6':
125                                 // Dependency is needed for ext-registration!! (want to alter a non existent Table)
126                                 addExtensionUpdateDependency('bonus');
127                                 setExtensionUpdateNotes("Abh&auml;nigkeit von der Erweiterung <strong>bonus</strong> hinzugef&uuml;gt.");
128                                 break;
129                 }
130                 break;
131
132         case 'modify': // When the extension got modified
133                 break;
134
135         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
136                 break;
137
138         case 'init': // Do stuff when extension is initialized
139                 // Valid HTML tags (only simple and no attributes!)
140                 // @TODO Move these arrays into config
141                 $GLOBALS['html_tags'] = array(
142                         'b',
143                         'i',
144                         'u',
145                         'ol',
146                         'ul',
147                         'li',
148                         'strong',
149                         'center',
150                         'left',
151                         'right',
152                         'br',
153                 );
154
155                 // URL ends which are used to indentify the end of an URL or email link
156                 // Don't use these chars in links... ;-)
157                 //
158                 $GLOBALS['url_ends'] = array(
159                         ' ',
160                         "\n",
161                         "\r",
162                         ')',
163                 );
164
165                 // Valid email chars (without @, or do you want to have another @ inside your email email?)
166                 $GLOBALS['valid_email_chars'] = array(
167                         'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s',
168                         't','u','v','w','x','y','z','a','B','C','D','E','F','G','H','I','J','K','L',
169                         'M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','-','.','_','0','1',
170                         '2','3','4','5','6','7','8','9'
171                 );
172                 break;
173
174         default: // Unknown extension mode
175                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
176                 break;
177 } // END - switc
178
179 // [EOF]
180 ?>