]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/sponsor/welcome.php
Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / modules / sponsor / welcome.php
index 0d73865e2198db3ffe83bb2a4367e47307a23c08..a5c2f8d2399548463f473ade655c198f53b7ce7a 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Willkommensseite des Sponsorenbereiches          *
  * -------------------------------------------------------------------- *
- * $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 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } elseif (!isExtensionActive('sponsor')) {
-       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('sponsor'));
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}');
        return;
 } elseif (!isSponsor()) {
        // No sponsor!
-       addFatalMessage(__FILE__, __LINE__, getMessage('SPONSOR_ONLY_AREA_ENTERED'));
+       addFatalMessage(__FILE__, __LINE__, '{--SPONSOR_ONLY_AREA_ENTERED--}');
        return;
 }
 
 // Load some data
-$result = SQL_QUERY_ESC("SELECT `gender`, `surname`, `family`, (`points_amount` - `points_used`) AS points
-FROM `{?_MYSQL_PREFIX?}_sponsor_data`
-WHERE `id`='%s' AND `password`='%s' LIMIT 1",
-       array(bigintval(getSession('sponsorid')), getSession('sponsorpass')), __FILE__, __LINE__);
-$content = SQL_FETCHARRAY($result);
+$result = sqlQueryEscaped('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__);
 
-// Free memory
-SQL_FREERESULT($result);
+// Fetch data
+$content = sqlFetchArray($result);
 
-// Prepare data for the template
-$content['gender'] = translateGender($content['gender']);
-$content['points'] = translateComma($content['points']);
+// Free memory
+sqlFreeResult($result);
 
 // Load main template
-$OUT = loadTemplate('sponsor_welcome', true, $content);
+$GLOBALS['sponsor_output'] = loadTemplate('sponsor_welcome', TRUE, $content);
 
 // [EOF]
 ?>