Missing constant added
[mailer.git] / 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, $startTime;
39 $GLOBALS['startTime'] = microtime(true);
40 $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
41
42 // Set this because we have no module in URI
43 $GLOBALS['module'] = "show_bonus"; $CSS = 0;
44
45 // Load the required file(s)
46 require ("inc/config.php");
47
48 // Is the "bonus" extension active?
49 if (!EXT_IS_ACTIVE("bonus")) {
50         // Redirect to index
51         LOAD_URL("modules.php?module=index&amp;msg=".CODE_EXTENSION_PROBLEM."&amp;ext=bonus");
52 } // END - if
53
54 // List only rankings when script is installed
55 if (isBooleanConstantAndTrue('mxchange_installed'))
56 {
57         // Include header
58         include(PATH."inc/header.php");
59
60         if (($_GET['uid'] > 0) && ($_GET['d'] > 0) && (!empty($_GET['t'])))
61         {
62                 // Set row name
63                 $t = "";
64                 switch ($_GET['t'])
65                 {
66                 case "bonusid":
67                         $t = "bonus_id";
68                         break;
69
70                 case "mailid":
71                         $t = "mail_id";
72                         break;
73                 }
74                 if (!empty($t))
75                 {
76                         // Check for data
77                         $result = SQL_QUERY_ESC("SELECT DISTINCT d.gender, d.surname, d.family, b.level, b.points
78 FROM "._MYSQL_PREFIX."_user_data AS d
79 RIGHT JOIN "._MYSQL_PREFIX."_bonus_turbo AS b
80 ON d.userid=b.userid
81 WHERE d.status='CONFIRMED' AND d.userid=%s AND b.".$t."='%s' LIMIT 1",
82  array(bigintval($_GET['uid']), bigintval($_GET['d'])), __FILE__, __LINE__);
83                         if (SQL_NUMROWS($result) == 1)
84                         {
85                                 // Load data
86                                 list($gender, $sname, $fname, $level, $points) = SQL_FETCHROW($result);
87
88                                 // Prepare constants for the pre-template
89                                 define('__GENDER'    , TRANSLATE_GENDER($gender));
90                                 define('__SNAME'    , $sname);
91                                 define('__FNAME'    , $fname);
92                                 define('__RANK'     , $level);
93                                 define('__POINTS'   , $points);
94                                 define('__MAILID'   , $_GET['d']);
95                                 define('__RANK_ROWS', BONUS_MAKE_RANK_ROWS(bigintval($_GET['d']), $t, bigintval($_GET['uid'])));
96
97                                 // Constant created within previous function which contains informations for current user's ranking position:
98                                 //   __YOUR_RANKING_LINE
99
100                                 // Load pre-template
101                                 define('__BONUS_MSG', LOAD_TEMPLATE("show_bonus_msg", true));
102                         }
103                          else
104                         {
105                                 // No data found
106                                 define('__BONUS_MSG', "<FONT class=\"guest_failed\">".BONUS_SHOW_NO_DATA."</FONT>");
107                         }
108
109                         // Free memory
110                         SQL_FREERESULT($result);
111                 }
112                  else
113                 {
114                         // Wrong type entered
115                         define('__BONUS_MSG', "<FONT class=\"guest_failed\">".BONUS_SHOW_WRONG_TYPE."</FONT>");
116                 }
117         }
118          else
119         {
120                 // Wrong call!
121                 define('__BONUS_MSG', "<FONT class=\"guest_failed\">".BONUS_SHOW_WRONG_CALL."</FONT>");
122         }
123
124         // Load send_bonus header template (for your banners, e.g.?)
125         define('__BONUS_HEADER', LOAD_TEMPLATE("show_bonus_header", true));
126
127         // Load show_bonus footer template (for your banners, e.g.?)
128         define('__BONUS_FOOTER', LOAD_TEMPLATE("show_bonus_footer", true));
129
130         // Total ranks who can win
131         define('__BONUS_TOTAL_RANKS', $_CONFIG['bonus_ranks']);
132
133         // Load final template
134         LOAD_TEMPLATE("show_bonus");
135
136         // Include footer
137         include(PATH."inc/footer.php");
138 }
139  else
140 {
141         // You have to configure first!
142         LOAD_URL("install.php");
143 }
144 // Really all done here... ;-)
145 ?>