Security line in all includes changed
[mailer.git] / inc / modules / admin / what-admins_contact.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_contact.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 ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 if (($_POST['ok'] != '') && ($_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_contact_admin", $_POST['text'], "0");
50                 SEND_ADMIN_MESSAGE($_GET['admin'], ADMINS_MSG_FROM_ADMIN, $msg);
51         }
52          else
53         {
54                 // Send mail
55                 $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id='".$_GET['admin']."' LIMIT 1", __FILE__, __LINE__);
56                 list($email) = SQL_FETCHROW($result);
57                 $msg = LOAD_EMAIL_TEMPLATE("admins_mail_contact_admin", $_POST['text'], "0");
58                 SEND_EMAIL($email, ADMINS_MSG_FROM_ADMIN, $msg);
59         }
60         // Mail / message dropped
61         LOAD_TEMPLATE("admin_settings_saved", false, ADMINS_ADMIN_CONTACTED);
62 }
63  elseif ($_GET['admin'] != '')
64 {
65         // Load contact form template
66         define('__ADMIN', $_GET['admin']);
67         if (EXT_IS_ACTIVE("msg"))
68         {
69                 // Add option to select between mail and message
70                 define('ADMINS_MESSAGING_SELECTION', "<TR>
71   <TD colspan=\"3\" align=\"center\" class=\"admin_title bottom2\" height=\"28\">".ADMINS_SELECT_CONTACT_TYPE."</TD>
72 </TR>
73 <TR><TD colspan=\"3\" class=\"seperator\">&nbsp;</TD></TR>
74 <TR>
75   <TD align=\"right\"><INPUT type=\"radio\" name=\"type\" class=\"admin_normal\" value=\"mail\" checked>&nbsp;".ADMINS_CONTACT_TYPE_MAIL."</TD>
76   <TD width=\"10\" class=\"seperator\">&nbsp;</TD>
77   <TD><INPUT type=\"radio\" name=\"type\" class=\"admin_normal\" value=\"msg\">&nbsp;".ADMINS_CONTACT_TYPE_MSG."</TD>
78 </TR>");
79         }
80          else
81         {
82                 // Outout hidden input
83                 define('ADMINS_MESSAGING_SELECTION', "<TR>
84   <TD colspan=\"3\" align=\"center\" class=\"admin_title bottom2\" height=\"28\">
85     ".ADMINS_CONTACT_DEFAULT_MAIL."
86     <INPUT type=\"hidden\" name=\"type\" value=\"mail\">
87   </TD>
88 </TR>");
89         }
90         LOAD_TEMPLATE("admin_admins_contact_form");
91 }
92  else
93 {
94         // Please select an admin!
95         LOAD_TEMPLATE("admin_settings_saved", false, ADMINS_SELECT_ADMIN);
96 }
97 //
98 ?>