Way more usage of EL code:
[mailer.git] / inc / modules / admin / what-del_sponsor.php
index 0bd3444b15c9493240f78bdf04b038c11d0291f9..a37f7d71432d77334a8bcf437c19c046c0716fda 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-del_sponsor.php                             *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Sponsorenaccount aendern                         *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * 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__));
+addYouAreHereLink('admin', __FILE__);
 
-if (!empty($HTTP_GET_VARS['id']))
-{
+if (isGetRequestParameterSet('id')) {
        // Check for selected sponsor
-       $result = SQL_QUERY_ESC("SELECT email, salut, surname, family FROM "._MYSQL_PREFIX."_sponsor_data WHERE id='%s' LIMIT 1",
-        array($HTTP_GET_VARS['id']), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == 1)
-       {
+       $result = SQL_QUERY_ESC("SELECT `id`, `email`, `gender`, `surname`, `family` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
+               array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
+       if (SQL_NUMROWS($result) == 1) {
                // Remove sponsor
-               if (isset($HTTP_POST_VARS['ok']))
-               {
+               if (isFormSent()) {
                        // Load data and remember it in constants
-                       list($email, $salut, $surname, $family) = SQL_FETCHROW($result);
-                       SQL_FREERESULT($result);
-                       define('__EMAIL'  , $email);
-                       define('__SALUT'  , TRANSLATE_SEX($salut));
-                       define('__SURNAME', $surname);
-                       define('__FAMILY' , $family);
+                       $content = SQL_FETCHARRAY($result);
+
+                       // Prepare data for the template
+                       $content['reason']  = postRequestParameter('reason');
 
                        // Prepare message and send it away
-                       $msg = LOAD_EMAIL_TEMPLATE("del_sponsor", $HTTP_POST_VARS['reason'], $HTTP_GET_VARS['id']);
-                       SEND_EMAIL($email, SPONSOR_ADMIN_DEL_SUBJECT, $msg);
+                       $message = loadEmailTemplate('del_sponsor', $content, bigintval(getRequestParameter('id')));
+                       sendEmail($content['email'], '{--ADMIN_SPONSOR_DELETE_SUBJECT--}', $message);
 
                        // Remove account
-                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_sponsor_data WHERE id='%s' LIMIT 1",
-                        array(bigintval($HTTP_GET_VARS['id'])), __FILE__, __LINE__);
+                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
+                               array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
 
                        // Remove orders
-                       $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_sponsor_orders WHERE sponsorid='%s' LIMIT 1",
-                        array(bigintval($HTTP_GET_VARS['id'])), __FILE__, __LINE__);
+                       SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_sponsor_orders` WHERE `sponsor_id`='%s' LIMIT 1",
+                               array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
 
                        // Output message
-                       LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_DELETED_1.$HTTP_GET_VARS['id'].SPONSOR_DELETED_2);
-               }
-                elseif (!empty($HTTP_POST_VARS['no']))
-               {
+                       displayMessage('{%message,ADMIN_SPONSOR_DELETED=' . bigintval(getRequestParameter('id')) . '%}');
+               } elseif (isPostRequestParameterSet('no')) {
                        // Do not delete him...
-                       LOAD_URL(URL."/modules.php?module=admin&amp;what=list_sponsor&amp;id=".$HTTP_GET_VARS['id']);
-               }
-                else
-               {
+                       redirectToUrl('modules.php?module=admin&amp;what=list_sponsor&amp;id='.bigintval(getRequestParameter('id')));
+               } else {
                        // Load data
-                       list ($email, $salut, $sname, $fname) = SQL_FETCHROW($result);
+                       $content = SQL_FETCHARRAY($result);
 
                        // Transfer data to constants for the template
-                       define('__EMAIL', $email);
-                       define('__SNAME', $sname);
-                       define('__FNAME', $fname);
-                       define('__SALUT', TRANSLATE_SEX($salut));
-                       define('__UID'  , $HTTP_GET_VARS['id']);
+                       $content['userid'] = bigintval(getRequestParameter('id'));
 
                        // Display form
-                       LOAD_TEMPLATE("admin_del_sponsor");
+                       loadTemplate('admin_delete_sponsor', false, $content);
                }
+       } else {
+               // Sponsor not found
+               displayMessage('{%message,ADMIN_SPONSOR_404=' . bigintval(getRequestParameter('id')) . '%}');
        }
-        else
-       {
-               // Sponsor not found!
-               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SPONSOR_404_1.$HTTP_GET_VARS['id'].ADMIN_SPONSOR_404_2);
-       }
-}
- else
-{
+
+       // Free result
+       SQL_FREERESULT($result);
+} else {
        // Not called by what-list_sponsor.php
-       LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_CALL_NOT_DIRECTLY);
+       displayMessage('{--ADMIN_CALL_NOT_DIRECTLY--}');
 }
 
-//
+// [EOF]
 ?>