Deprecated variables for templates removed, mor EL-rewrites, getMessage() rewritten:
[mailer.git] / inc / modules / admin / what-admins_contct.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if ((isFormSent()) && (isGetRequestParameterSet('admin'))) {
49         // Send mail or message
50         if ((isExtensionActive('msg')) && (postRequestParameter('type') == 'message')) {
51                 // Add message
52                 $message = loadEmailTemplate('admins_msg_contct_admin', postRequestParameter('text'), 0);
53                 sendAdminMessage(getRequestParameter('admin'), getMessage('ADMINS_MSG_FROM_ADMIN'), $message);
54         } else {
55                 // Load admin's email address
56                 $email = getAdminEmail(bigintval(getRequestParameter('admin')));
57
58                 // Load email template and send the mail to the admin
59                 $message = loadEmailTemplate('admins_mail_contct_admin', postRequestParameter('text'), 0);
60                 sendEmail($email, getMessage('ADMINS_MSG_FROM_ADMIN'), $message);
61         }
62
63         // Mail / message dropped
64         loadTemplate('admin_settings_saved', false, '{--ADMINS_ADMIN_CONTACTED--}');
65 } elseif (isGetRequestParameterSet('admin')) {
66         // Load contact form template
67         $content['admin'] = getRequestParameter('admin');
68
69         if (isExtensionActive('msg')) {
70                 // Add option to select between mail and message
71                 $content['message_selection'] = loadTemplate('admin_admins_contct_select', true);
72         } else {
73                 // Outout hidden input
74                 $content['message_selection'] = loadTemplate('admin_admins_contct_default', true);
75         }
76
77         // Load main form
78         loadTemplate('admin_admins_contct_form', false, $content);
79 } else {
80         // Please select an admin!
81         loadTemplate('admin_settings_saved', false, '{--ADMINS_SELECT_ADMIN--}');
82 }
83
84 // [EOF]
85 ?>