Extension 'ext-coupon' moved to branch, SQLs improved:
[mailer.git] / inc / modules / sponsor / welcome.php
index 0c9b1f7f9b805b6e8a636b181682de8b673b3725..a740df393395ed9e9b1a7192442c7ec80e1820bc 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/17/2005 *
- * ===============                              Last change: 05/19/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 09/17/2005 *
+ * ===================                          Last change: 05/19/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : welcome.php                                      *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Willkommensseite des Sponsorenbereiches          *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyleft (c) 2003, 2004, 2005 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'])) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
-       require($INC);
-} elseif ((!EXT_IS_ACTIVE("sponsor")) && (!IS_ADMIN())) {
-       $FATAL[] = EXTENSION_PROBLEM_EXT_INACTIVE;
+if (!defined('__SECURITY')) {
+       die();
+} elseif (!isExtensionActive('sponsor')) {
+       displayMessage(generateExtensionInactiveNotInstalledMessage('sponsor'));
        return;
-} elseif (!IS_SPONSOR()) {
+} elseif (!isSponsor()) {
        // No sponsor!
-       $FATAL[] = SPONSOR_ONLY_AREA_ENTERED;
+       addFatalMessage(__FILE__, __LINE__, '{--SPONSOR_ONLY_AREA_ENTERED--}');
        return;
 }
 
 // Load some data
-$result = SQL_QUERY_ESC("SELECT salut, surname, family, (points_amount - points_used) AS points
-FROM "._MYSQL_PREFIX."_sponsor_data
-WHERE id='%s' AND password='%s' LIMIT 1",
- array(bigintval($_COOKIE['sponsorid']), $_COOKIE['sponsorpass']), __FILE__, __LINE__);
-list($salut, $surname, $family, $points) = SQL_FETCHROW($result);
+$result = SQL_QUERY_ESC("SELECT
+       `id`, `gender`, `surname`, `family`, (`points_amount` - `points_used`) AS `points`
+FROM
+       `{?_MYSQL_PREFIX?}_sponsor_data`
+WHERE
+       `id`=%s
+LIMIT 1",
+       array(
+               bigintval(getSession('sponsor_id'))
+       ), __FILE__, __LINE__);
+
+// Fetch data
+$content = SQL_FETCHARRAY($result);
 
 // Free memory
 SQL_FREERESULT($result);
 
-// Prepare data for the template
-define('__SALUT'  , TRANSLATE_SEX($salut));
-define('__SURNAME', $surname);
-define('__FAMILY' , $family);
-define('__POINTS' , TRANSLATE_COMMA($points));
-
 // Load main template
-$OUT = LOAD_TEMPLATE("sponsor_welcome", true);
+$GLOBALS['sponsor_output'] = loadTemplate('sponsor_welcome', true, $content);
 
-//
+// [EOF]
 ?>