Deprecated variables for templates removed, mor EL-rewrites, getMessage() rewritten:
[mailer.git] / inc / modules / admin / what-user_contct.php
index 0fda63c56a1715cad9337df707d8f8921f11f562..95525b00fb29d6770bc5ed4b9e1722a10982760b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 01/29/2008 *
- * ================                             Last change: 01/29/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 01/29/2008 *
+ * ===================                          Last change: 01/29/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-user_contct.php                             *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Das Mitglied ueber ein Formular kontaktieren     *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+addMenuDescription('admin', __FILE__);
 
 // Is a user id given?
-if ((REQUEST_ISSET_GET(('uid'))) && (bigintval(REQUEST_GET('uid')) > 0)) {
-       // Load user data and display it
-       $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-               array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__);
-
+if ((isGetRequestParameterSet('userid')) && (bigintval(getRequestParameter('userid')) > 0)) {
        // Is a user account found?
-       if (SQL_NUMROWS($result) == 1) {
+       if (fetchUserData(getRequestParameter('userid'))) {
                // Load the data
-               $content = SQL_FETCHARRAY($result);
+               $content = getUserDataArray();
 
-               // Including user ID
-               $content['uid'] = bigintval(REQUEST_GET('uid'));
+               // Including user id
+               $content['userid'] = bigintval(getRequestParameter('userid'));
 
                // Shall we send the email?
-               if (IS_FORM_SENT()) {
+               if (isFormSent()) {
                        // Insert text
-                       $content['text'] = trim(strip_tags(REQUEST_POST('text')));
+                       $content['text'] = trim(secureString(postRequestParameter('text')));
+
+                       // Load email template
+                       $message = loadEmailTemplate('member_contct', $content, getRequestParameter('userid'));
 
                        // Send contact form out
-                       $msg = LOAD_EMAIL_TEMPLATE("member_contct", $content);
-                       SEND_EMAIL($content['email'], getMessage('ADMIN_CONTACT_USER_SUBJECT'), $msg);
-                       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_USER_CONTACTED'));
+                       sendEmail($content['email'], getMessage('ADMIN_CONTACT_USER_SUBJECT'), $message);
+
+                       // Display message
+                       loadTemplate('admin_settings_saved', false, '{--ADMIN_USER_CONTACTED--}');
                } else {
                        // Load contact form template
-                       LOAD_TEMPLATE("admin_contct_user_form", false, $content);
+                       loadTemplate('admin_contct_user_form', false, $content);
                }
        } else {
                // Not found?
-               LOAD_TEMPLATE("admin_settings_saved", false, sprintf(USER_ACCOUNT_404, bigintval(REQUEST_GET('uid'))));
+               loadTemplate('admin_settings_saved', false, getMaskedMessage('USER_ACCOUNT_404', bigintval(getRequestParameter('userid'))));
        }
-
-       // Free result
-       SQL_FREERESULT($result);
 } else {
        // Display selection box
-       ADD_MEMBER_SELECTION_BOX();
+       addMemberSelectionBox();
 }
 
-//
+// [EOF]
 ?>