script does now also regonize the difference between payout in withdraw in wernis...
[mailer.git] / inc / modules / admin / what-admins_contct.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 06/19/2004 *
4  * ================                             Last change: 06/19/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-admins_contct.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Contact an admin through mail or message         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Admin per Mail oder Nachricht kontaktieren       *
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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 if ((isset($_POST['ok'])) && (!empty($_GET['admin'])))
44 {
45         // Send mail or message
46         if ((EXT_IS_ACTIVE("msg")) && ($_POST['type'] == "msg"))
47         {
48                 // Add message
49                 $msg = LOAD_EMAIL_TEMPLATE("admins_msg_contct_admin", $_POST['text'], "0");
50                 SEND_ADMIN_MESSAGE($_GET['admin'], ADMINS_MSG_FROM_ADMIN, $msg);
51         }
52          else
53         {
54                 // Load admin's email address
55                 $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id=%d LIMIT 1",
56                  array(bigintval($_GET['admin'])), __FILE__, __LINE__);
57                 list($email) = SQL_FETCHROW($result);
58                 SQL_FREERESULT($result);
59
60                 // Load email template and send the mail to the admin
61                 $msg = LOAD_EMAIL_TEMPLATE("admins_mail_contct_admin", $_POST['text'], "0");
62                 SEND_EMAIL($email, ADMINS_MSG_FROM_ADMIN, $msg);
63         }
64         // Mail / message dropped
65         LOAD_TEMPLATE("admin_settings_saved", false, ADMINS_ADMIN_CONTACTED);
66 }
67  elseif (!empty($_GET['admin']))
68 {
69         // Load contact form template
70         define('__ADMIN', $_GET['admin']);
71         if (EXT_IS_ACTIVE("msg"))
72         {
73                 // Add option to select between mail and message
74                 define('ADMINS_MESSAGING_SELECTION', LOAD_TEMPLATE("admin_admins_contct_select", true));
75         }
76          else
77         {
78                 // Outout hidden input
79                 define('ADMINS_MESSAGING_SELECTION', LOAD_TEMPLATE("admin_admins_contct_default", true));
80         }
81         LOAD_TEMPLATE("admin_admins_contct_form");
82 }
83  else
84 {
85         // Please select an admin!
86         LOAD_TEMPLATE("admin_settings_saved", false, ADMINS_SELECT_ADMIN);
87 }
88 //
89 ?>