fooRequestElementBar() functions renamed, adding of request parameters added:
[mailer.git] / inc / modules / admin / what-lock_sponsor.php
index 2d22e80e03f0b707496ac3991edfa57606a3a997..75a0b2856f101c289adb72c63d3381bbed7d41e4 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 04/24/2005 *
- * ===============                              Last change: 05/18/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 04/24/2005 *
+ * ===================                          Last change: 05/19/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-lock_sponsor.php                            *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Sponsorenaccount aendern                         *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $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                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
- * This program is free software. You can redistribute it and/or modify *
+ * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License.       *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
  *                                                                      *
  * This program is distributed in the hope that it will be useful,      *
  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!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", basename(__FILE__));
-$MSG = "";
+addMenuDescription('admin', __FILE__);
+$message = '';
 
-if (!empty($HTTP_GET_VARS['id']))
-{
+if (isGetRequestParameterSet('id')) {
        // Check for selected sponsor
-       $result = SQL_QUERY_ESC("SELECT salut, surname, family, email, status FROM "._MYSQL_PREFIX."_sponsor_data WHERE id='%s' LIMIT 1",
-        array($HTTP_GET_VARS['id']), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 1)
-       {
+       $result_sponsor = SQL_QUERY_ESC("SELECT `gender`, `surname`, `family`, `email`, `status` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`='%s' LIMIT 1",
+               array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
+       if (SQL_NUMROWS($result_sponsor) == 1) {
                // Get sponsor's current status and let only confirmed and locked status pass
-               list($salut, $sname, $fname, $email, $status) = SQL_FETCHROW($result);
-               SQL_FREERESULT($result);
+               $content = SQL_FETCHARRAY($result_sponsor);
 
-               if (($status == "CONFIRMED") || ($status == "LOCKED"))
-               {
+               if (($content['status'] == 'CONFIRMED') || ($content['status'] == 'LOCKED')) {
                        // Transfer data to constants
-                       define('__SALUT'  , TRANSLATE_SEX($salut));
-                       define('__SURNAME', $sname);
-                       define('__FAMILY' , $fname);
-                       define('__ID'     , $HTTP_GET_VARS['id']);
+                       $content['gender'] = translateGender($content['gender']);
+                       $content['id']     = bigintval(getRequestParameter('id'));
+                       $content['reason'] = secureString(postRequestParameter('reason'));
 
-                       if (isset($HTTP_POST_VARS['ok']))
-                       {
+                       if (isFormSent()) {
                                // Create messages
-                               if ($status == "CONFIRMED")
-                               {
+                               if ($content['status'] == 'CONFIRMED') {
                                        // Message when sponsor's account got lock
-                                       define('__EMAIL_MSG', SPONSOR_ACCOUNT_LOCKED);
-                                       $subject = SPONSOR_SUBJECT_LOCKED;
-                                       $status = "LOCKED";
-                               }
-                                else
-                               {
+                                       $content['message'] = getMessage('SPONSOR_ACCOUNT_LOCKED');
+                                       $subject = getMessage('SPONSOR_SUBJECT_LOCKED');
+                                       $content['status'] = 'LOCKED';
+                               } else {
                                        // Message when sponsor's account got unlock
-                                       define('__EMAIL_MSG', SPONSOR_ACCOUNT_UNLOCKED);
-                                       $subject = SPONSOR_SUBJECT_UNLOCKED;
-                                       $status = "CONFIRMED";
+                                       $content['message'] = getMessage('SPONSOR_ACCOUNT_UNLOCKED');
+                                       $subject = getMessage('SPONSOR_SUBJECT_UNLOCKED');
+                                       $content['status'] = 'CONFIRMED';
                                }
 
                                // Load email message
-                               $msg = LOAD_EMAIL_TEMPLATE("lock_sponsor", $HTTP_POST_VARS['reason'], $HTTP_GET_VARS['id']);
+                               $message = loadEmailTemplate('lock_sponsor', $content, bigintval(getRequestParameter('id')));
 
                                // And send it away
-                               SEND_EMAIL($email, $subject, $msg);
+                               sendEmail($content['email'], $subject, $message);
 
                                // Update sponsor's account
-                               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET status='".$status."' WHERE id='%s' LIMIT 1",
-                                array(bigintval($HTTP_GET_VARS['id'])), __FILE__, __LINE__);
-                       }
-                        elseif (!empty($HTTP_POST_VARS['no']))
-                       {
+                               SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET `status`='%s' WHERE `id`='%s' LIMIT 1",
+                                       array($content['status'], bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
+                       } elseif (isPostRequestParameterSet('no')) {
                                // No don't lock / unlock now!
-                               LOAD_URL(URL."/modules.php?module=admin&what=list_sponsor&id=".$HTTP_GET_VARS['id']);
-                       }
-                        else
-                       {
+                               redirectToUrl('modules.php?module=admin&amp;what=list_sponsor&amp;id=' . bigintval(getRequestParameter('id')));
+                       } else {
                                // Create header and text messages
-                               if ($status == "CONFIRMED")
-                               {
+                               if ($content['status'] == 'CONFIRMED') {
                                        // Messages when sponsor's account is confirmed
-                                       define('__HEADER_MESSAGE', SPONSOR_LOCK_SPONSOR_HEADER);
-                                       define('__TEXT_MESSAGE'  , SPONSOR_LOCK_SPONSOR_TEXT);
-                               }
-                                else
-                               {
+                                       $content['header_message'] = getMessage('SPONSOR_LOCK_SPONSOR_HEADER');
+                                       $content['text_message']   = getMessage('SPONSOR_LOCK_SPONSOR_TEXT');
+                               } else {
                                        // Messages when sponsor's account is locked
-                                       define('__HEADER_MESSAGE', SPONSOR_UNLOCK_SPONSOR_HEADER);
-                                       define('__TEXT_MESSAGE'  , SPONSOR_UNLOCK_SPONSOR_TEXT);
+                                       $content['header_message'] = getMessage('SPONSOR_UNLOCK_SPONSOR_HEADER');
+                                       $content['text_message']   = getMessage('SPONSOR_UNLOCK_SPONSOR_TEXT');
                                }
 
                                // Create email link
-                               define('__EMAIL_LINK', "<A href=\"mailto:".$email."\">".__SALUT." ".__SURNAME." ".__FAMILY."</A>");
+                               $content['email_link'] = '<a href="' . generateEmailLink($content['email'], 'sponsor_data') . '">' . $content['gender'] . ' ' . $content['surname'] . ' ' . $content['family'] . '</a>';
 
                                // Display form
-                               LOAD_TEMPLATE("admin_lock_sponsor");
+                               loadTemplate('admin_lock_sponsor', false, $content);
                        }
-               }
-                else
-               {
+               } else {
                        // Cannot change status on unconfirmed or pending accounts!
-                       $MSG = ADMIN_SPONSPOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS;
+                       $message = getMessage('ADMIN_SPONSPOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS');
                }
-       }
-        else
-       {
+       } else {
                // Sponsor not found!
-               $MSG = ADMIN_SPONSOR_404_1.$HTTP_GET_VARS['id'].ADMIN_SPONSOR_404_2;
+               $message = getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('id')));
        }
-}
- else
-{
+
+       // Free result
+       SQL_FREERESULT($result_sponsor);
+} else {
        // Not called by what-list_sponsor.php
-       $MSG = ADMIN_CALL_NOT_DIRECTLY;
+       $message = getMessage('ADMIN_CALL_NOT_DIRECTLY');
 }
 
-if (!empty($MSG))
-{
+if (!empty($message)) {
        // Output message
-       LOAD_TEMPLATE("admin_settings_saved", false, $MSG);
-}
-//
+       loadTemplate('admin_settings_saved', false, $message);
+} // END - if
+
+// [EOF]
 ?>