Comments fixed, ext-network continued, fix for mod stats:
[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 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 } // END - if
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("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `what`='html_mail' LIMIT 1");
62                 break;
63
64         case 'activate': // Do stuff when admin activates this extension
65                 // SQL commands to run
66                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='html_mail' LIMIT 1");
67                 break;
68
69         case 'deactivate': // Do stuff when admin deactivates this extension
70                 // SQL commands to run
71                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='html_mail' LIMIT 1");
72                 break;
73
74         case 'update': // Update an extension
75                 switch (getCurrentExtensionVersion()) {
76                         case '0.0.6': // SQL queries for v0.0.6
77                                 // Update notes (these will be set as task text!)
78                                 setExtensionUpdateNotes("Der erstellte HTML-Code wird noch kompiliert (eigene HTML-Codes umgewandelt).");
79                                 break;
80
81                         case '0.0.8': // SQL queries for v0.0.8
82                                 // Update notes (these will be set as task text!)
83                                 setExtensionUpdateNotes("Fehlende Abfrage im Mitlieder-Modul, on Erweiterung auch aktiviert ist.");
84                                 break;
85
86                         case '0.0.9': // SQL queries for v0.0.9
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.1.0': // SQL queries for v0.2.1
92                                 // Update notes (these will be set as task text!)
93                                 setExtensionUpdateNotes("Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
94                                 break;
95
96                         case '0.1.1': // SQL queries for v0.1.1
97                                 // Update notes (these will be set as task text!)
98                                 setExtensionUpdateNotes("Seit <strong>Patch 340</strong> &uuml;berfl&uuml;ssige HTML-Tags entfernt.");
99                                 break;
100
101                         case '0.1.2': // SQL queries for v0.1.2
102                                 // Update notes (these will be set as task text!)
103                                 setExtensionUpdateNotes("W&ouml;rter <strong>{?mt_word?}</strong>, <strong>{?mt_word2?}</strong> und <strong>{?mt_word3?}</strong> sind austauschbar.");
104                                 break;
105
106                         case '0.1.3': // SQL queries for v0.1.3
107                                 // Update notes (these will be set as task text!)
108                                 setExtensionUpdateNotes("Sicherheitsupdate: SQL-Anweisungen gesch&uuml;tzt.");
109                                 break;
110
111                         case '0.1.4': // SQL queries for v0.1.4
112                                 // Update notes (these will be set as task text!)
113                                 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
114                                 break;
115
116                         case '0.1.5': // SQL queries for v0.1.5
117                                 // Update notes (these will be set as task text!)
118                                 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
119                                 break;
120
121                         case '0.1.6':
122                                 // Dependency is needed for ext-registration!! (want to alter a non existent Table)
123                                 addExtensionUpdateDependency('bonus');
124                                 setExtensionUpdateNotes("Abh&auml;nigkeit von der Erweiterung <strong>bonus</strong> hinzugef&uuml;gt.");
125                                 break;
126                 }
127                 break;
128
129         case 'modify': // When the extension got modified
130                 break;
131
132         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
133                 break;
134
135         case 'init': // Do stuff when extension is initialized
136                 // Valid HTML tags (only simple and no attributes!)
137                 // @TODO Move these arrays into config
138                 $GLOBALS['html_tags'] = array(
139                         'b',
140                         'i',
141                         'u',
142                         'ol',
143                         'ul',
144                         'li',
145                         'strong',
146                         'center',
147                         'left',
148                         'right',
149                         'br',
150                 );
151
152                 // URL ends which are used to indentify the end of an URL or email link
153                 // Don't use these chars in links... ;-)
154                 //
155                 $GLOBALS['url_ends'] = array(
156                         ' ',
157                         "\n",
158                         "\r",
159                         ')',
160                 );
161
162                 // Valid email chars (without @, or do you want to have another @ inside your email email?)
163                 $GLOBALS['valid_email_chars'] = array(
164                         'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s',
165                         't','u','v','w','x','y','z','a','B','C','D','E','F','G','H','I','J','K','L',
166                         'M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','-','.','_',0,1,
167                         2,3,4,5,6,7,8,9
168                 );
169                 break;
170
171         default: // Unknown extension mode
172                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode()));
173                 break;
174 } // END - switc
175
176 // [EOF]
177 ?>