2 /************************************************************************
3 * MXChange v0.2.1 Start: 06/19/2004 *
4 * ================ Last change: 06/19/2004 *
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 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
43 if ((isset($_POST['ok'])) && (!empty($_GET['admin'])))
45 // Send mail or message
46 if ((EXT_IS_ACTIVE("msg")) && ($_POST['type'] == "msg"))
49 $msg = LOAD_EMAIL_TEMPLATE("admins_msg_contct_admin", $_POST['text'], "0");
50 SEND_ADMIN_MESSAGE($_GET['admin'], ADMINS_MSG_FROM_ADMIN, $msg);
54 // Load admin's email address
55 $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id=%s LIMIT 1",
56 array(bigintval($_GET['admin'])), __FILE__, __LINE__);
57 list($email) = SQL_FETCHROW($result);
58 SQL_FREERESULT($result);
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);
64 // Mail / message dropped
65 LOAD_TEMPLATE("admin_settings_saved", false, ADMINS_ADMIN_CONTACTED);
67 elseif (!empty($_GET['admin']))
69 // Load contact form template
70 define('__ADMIN', $_GET['admin']);
71 if (EXT_IS_ACTIVE("msg"))
73 // Add option to select between mail and message
74 define('ADMINS_MESSAGING_SELECTION', LOAD_TEMPLATE("admin_admins_contct_select", true));
78 // Outout hidden input
79 define('ADMINS_MESSAGING_SELECTION', LOAD_TEMPLATE("admin_admins_contct_default", true));
81 LOAD_TEMPLATE("admin_admins_contct_form");
85 // Please select an admin!
86 LOAD_TEMPLATE("admin_settings_saved", false, ADMINS_SELECT_ADMIN);