88613c11eb1944f01c12922ef3dddf3e4d2d26cc
[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 - 2008 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         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Version number
46 EXT_SET_VERSION('0.1.6');
47
48 // Version history array (add more with , '0.1.0' and so on)
49 EXT_SET_VER_HISTORY(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'));
50
51 switch ($EXT_LOAD_MODE)
52 {
53         case 'register': // Do stuff when installation is running (modules.php?module=admin&action=login is called)
54                 // SQL commands to run
55                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_user_data` ADD html ENUM('Y','N') NOT NULL DEFAULT 'Y'");
56                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_bonus` ADD html_msg ENUM('Y','N') NOT NULL DEFAULT 'N'");
57                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_pool` ADD html_msg ENUM('Y','N') NOT NULL DEFAULT 'N'");
58                 ADD_EXT_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('main','html_mail','HTML-Empfang','3','Y','Y')");
59                 break;
60
61         case 'remove': // Do stuff when removing extension
62                 // SQL commands to run
63                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_user_data` DROP html");
64                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_bonus` DROP html_msg");
65                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_pool` DROP html_msg");
66                 ADD_EXT_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE `what`='html_mail'");
67                 break;
68
69         case 'activate': // Do stuff when admin activates this extension
70                 // SQL commands to run
71                 ADD_EXT_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='html_mail' LIMIT 1");
72                 break;
73
74         case 'deactivate': // Do stuff when admin deactivates this extension
75                 // SQL commands to run
76                 ADD_EXT_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='html_mail' LIMIT 1");
77                 break;
78
79         case 'update': // Update an extension
80                 switch ($EXT_VER)
81                 {
82                         case '0.0.6': // SQL queries for v0.0.6
83                                 // Update notes (these will be set as task text!)
84                                 EXT_SET_UPDATE_NOTES("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                                 EXT_SET_UPDATE_NOTES("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                                 EXT_SET_UPDATE_NOTES("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                                 EXT_SET_UPDATE_NOTES("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                                 EXT_SET_UPDATE_NOTES("Seit <a href=\"#\">Patch 340</a> &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                                 EXT_SET_UPDATE_NOTES("W&ouml;rter <strong>Mailtausch</strong>, <strong>Mailtausches</strong> und <strong>Mailtauscher</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                                 EXT_SET_UPDATE_NOTES("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                                 EXT_SET_UPDATE_NOTES("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                                 EXT_SET_UPDATE_NOTES("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                                 EXT_ADD_UPDATE_DEPENDS('bonus');
130                                 EXT_SET_UPDATE_NOTES("Abh&auml;nigkeit von der Erweiterung <strong>bonus</strong> hinzugef&uuml;gt.");
131                                 break;
132                 }
133                 break;
134
135                         case 'modify': // When the extension got modified
136                                 break;
137
138                         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
139                                 break;
140
141                         default: // Do stuff when extension is loaded
142                                 // Valid HTML tags (only simple and no attributes!)
143                                 $GLOBALS['html_tags'] = array(
144                 'b',
145                 'i',
146                 'u',
147                 'ol',
148                 'ul',
149                 'li',
150                 'strong',
151                 'center',
152                 'left',
153                 'right',
154                 'br',
155                                 );
156
157                                 // URL ends which are used to indentify the end of an URL or email link
158                                 // Don't use these chars in links... ;-)
159                                 //
160                                 $GLOBALS['url_ends'] = array(
161                 ' ',
162                 "\n",
163                 "\r",
164                 ')',
165                                 );
166
167                                 // Valid email chars (without @, or do you want to have another @ inside your email addy?)
168                                 $GLOBALS['valid_email_chars'] = array(
169                 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s',
170                 't','u','v','w','x','y','z','a','B','C','D','E','F','G','H','I','J','K','L',
171                 'M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','-','.','_','0','1',
172                 '2','3','4','5','6','7','8','9'
173                 );
174                 break;
175 }
176
177 //
178 ?>