Back-ported to PHP4 (type-hints removed)
[mailer.git] / 0.2.1 / show_bonus.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/13/2004 *
4  * ===============                              Last change: 11/14/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : show_bonus.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Show ranking list for turbo-bonus                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Rankliste fuer Turbo-Bonus anzeigen              *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
35 require_once("inc/libs/security_functions.php");
36
37 // Init "action" and "what"
38 global $what, $action;
39 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
40 if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
41 if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
42
43 // Set this because we have no module in URI
44 $GLOBALS['module'] = "show_bonus"; $CSS = 0;
45
46 // Load the required file(s)
47 require ("inc/config.php");
48
49 // List only rankings when script is installed
50 if (defined('mxchange_installed') && (mxchange_installed))
51 {
52         // Include header
53         include(PATH."inc/header.php");
54
55         if (($_GET['uid'] > 0) && ($_GET['d'] > 0) && (!empty($_GET['t'])))
56         {
57                 // Set row name
58                 $t = "";
59                 switch ($_GET['t'])
60                 {
61                 case "bonusid":
62                         $t = "bonus_id";
63                         break;
64
65                 case "mailid":
66                         $t = "mail_id";
67                         break;
68                 }
69                 if (!empty($t))
70                 {
71                         // Check for data
72                         $result = SQL_QUERY_ESC("SELECT DISTINCT d.sex, d.surname, d.family, b.level, b.points
73 FROM "._MYSQL_PREFIX."_user_data AS d
74 RIGHT JOIN "._MYSQL_PREFIX."_bonus_turbo AS b
75 ON d.userid=b.userid
76 WHERE d.status='CONFIRMED' AND d.userid=%d AND b.".$t."='%s' LIMIT 1",
77  array(bigintval($_GET['uid']), bigintval($_GET['d'])), __FILE__, __LINE__);
78                         if (SQL_NUMROWS($result) == 1)
79                         {
80                                 // Load data
81                                 list($sex, $sname, $fname, $level, $points) = SQL_FETCHROW($result);
82
83                                 // Prepare constants for the pre-template
84                                 define('__SALUT'    , TRANSLATE_SEX($sex));
85                                 define('__SNAME'    , $sname);
86                                 define('__FNAME'    , $fname);
87                                 define('__RANK'     , $level);
88                                 define('__POINTS'   , $points);
89                                 define('__MAILID'   , $_GET['d']);
90                                 define('__RANK_ROWS', BONUS_MAKE_RANK_ROWS(bigintval($_GET['d']), $t, bigintval($_GET['uid'])));
91
92                                 // Constant created within previous function which contains informations for current user's ranking position:
93                                 //   __YOUR_RANKING_LINE
94
95                                 // Load pre-template
96                                 define('__BONUS_MSG', LOAD_TEMPLATE("show_bonus_msg", true));
97                         }
98                          else
99                         {
100                                 // No data found
101                                 define('__BONUS_MSG', "<FONT class=\"guest_failed\">".BONUS_SHOW_NO_DATA."</FONT>");
102                         }
103
104                         // Free memory
105                         SQL_FREERESULT($result);
106                 }
107                  else
108                 {
109                         // Wrong type entered
110                         define('__BONUS_MSG', "<FONT class=\"guest_failed\">".BONUS_SHOW_WRONG_TYPE."</FONT>");
111                 }
112         }
113          else
114         {
115                 // Wrong call!
116                 define('__BONUS_MSG', "<FONT class=\"guest_failed\">".BONUS_SHOW_WRONG_CALL."</FONT>");
117         }
118
119         // Load send_bonus header template (for your banners, e.g.?)
120         define('__BONUS_HEADER', LOAD_TEMPLATE("show_bonus_header", true));
121
122         // Load show_bonus footer template (for your banners, e.g.?)
123         define('__BONUS_FOOTER', LOAD_TEMPLATE("show_bonus_footer", true));
124
125         // Total ranks who can win
126         define('__BONUS_TOTAL_RANKS', $CONFIG['bonus_ranks']);
127
128         // Load final template
129         LOAD_TEMPLATE("show_bonus");
130
131         // Include footer
132         include(PATH."inc/footer.php");
133 }
134  else
135 {
136         // You have to configure first!
137         LOAD_URL(URL."/install.php");
138 }
139 // Really all done here... ;-)
140 ?>