"copied"
[mailer.git] / 0.2.1-FINAL / inc / modules / admin / what-send_bonus.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/28/2003 *
4  * ===============                              Last change: 08/05/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-send_bonus.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Send out bonus mails to all members              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : An alle Mitglieder Bonus-Mails verschicken       *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!EXT_IS_ACTIVE("order")) {
39         ADD_FATAL(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "order"));
40         return;
41 }
42
43 // Add description as navigation point
44 ADD_DESCR("admin", __FILE__);
45
46 // Set empty mode to "select"
47 if (empty($_GET['mode'])) $_GET['mode'] = "select";
48
49 if (isset($_POST['ok'])) {
50         // Deliver bonus mail
51         ADD_NEW_BONUS_MAIL($_POST, $_GET['mode']);
52 } else {
53         // Get all available users
54         define('__ALL_VALUE', TRANSLATE_COMMA(GET_TOTAL_RECEIVERS($_GET['mode'])));
55
56         // Prepare option lines
57         define('__OPTION_LINES', ADD_CATEGORY_OPTIONS($_GET['mode']));
58
59         // Store send mode
60         define('__MODE', SQL_ESCAPE($_GET['mode']));
61
62         if (EXT_IS_ACTIVE("html_mail")) {
63                 // If HTML extension is active
64                 define('__HTML_SELECT',  LOAD_TEMPLATE("admin_send_bonus_html", true));
65         } else {
66                 // And if not
67                 define('__HTML_SELECT', "");
68         }
69
70         // Select template
71         switch($_GET['mode']) {
72                 case "html":   // HTML mails
73                 case "normal": // Normal mails
74                         $template = "admin_send_bonus_form";
75                         break;
76
77                 case "select": // Selection
78                         $template = "admin_send_bonus_select";
79                         break;
80         }
81
82         // Load template
83         LOAD_TEMPLATE($template);
84 }
85
86 //
87 ?>