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