]> git.mxchange.org Git - mailer.git/blob - inc/filter/html_mail_filter.php
Updated copyright year.
[mailer.git] / inc / filter / html_mail_filter.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 05/22/2013 *
4  * ===================                          Last change: 05/22/2013 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : html_mail_filter.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Filters for ext-html_mail                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Filter fuer ext-html_mail                        *
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 - 2016 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 // Filter for checking HTML mail in ext-order
44 function FILTER_CHECK_HTML_MAIL_ORDER ($filterData) {
45         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
46
47         // HTML or regular text mail?
48         if ($filterData['html'] == 'Y') {
49                 // Chek for valid HTML tags
50                 $checked = checkHtmlTags($filterData['text']);
51
52                 // Maybe invalid tags found?
53                 if (empty($checked)) {
54                         // Invalid HTML tags found
55                         $filterData['redirect'] = 'modules.php?module=login&amp;what=order&amp;code=' . getCode('INVALID_TAGS') . '&amp;id=' . $filterData['id'];
56                 } // END - if
57         } else {
58                 // Remove any HTML code
59                 $filterData['text'] = str_replace(array('<', '>'), array('{OPEN_HTML}', '{CLOSE_HTML}'), $filterData['text']);
60         }
61
62         // Return the data for next filter
63         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
64         return $filterData;
65 }
66
67 // Prepares an SQL statement part for HTML mail
68 function FILTER_HTML_INCLUDE_USERS ($mode) {
69         // Exclude no users by default
70         $MORE = '';
71
72         // HTML mail?
73         if ($mode == 'html') {
74                 $MORE = " AND `html`='Y'";
75         } // END - if
76
77         // Return result
78         return $MORE;
79 }
80
81 // [EOF]
82 ?>