e1697c7b6a90fa63ebb66bd55e06f9ff202e4819
[mailer.git] / inc / libs / payout_functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/19/2003 *
4  * ===============                              Last change: 08/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-points.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : All your collected points...                     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle Ihrer gesammelten Punkte                    *
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 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40 //
41 function PAYOUT_OUTPUT_PAYOUT_LIST($POINTS)
42 {
43         // Replace german decimal comma with CPU's decimal dot
44         $POINTS = strval(str_replace(",", ".", $POINTS));
45         if ($POINTS > 0)
46         {
47                 // Pay this out!
48                 $result = SQL_QUERY_ESC("SELECT id, type, rate, min_points
49 FROM "._MYSQL_PREFIX."_payout_types
50 WHERE %s >= min_points
51 ORDER BY type", array($POINTS), __FILE__, __LINE__);
52                 if (SQL_NUMROWS($result) > 0)
53                 {
54                         OUTPUT_HTML("<br /><DIV align=\"center\">
55 <DIV align=\"center\"><STRONG>".PAYOUT_NOW.":</STRONG></DIV><br />
56 <UL>");
57                         // Now let's check
58                         while (list($id, $type, $rate, $mpoi) = SQL_FETCHROW($result))
59                         {
60                                 $type = COMPILE_CODE($type);
61                                 if ($POINTS >= $mpoi)
62                                 {
63                                         // Ok we found one
64                                         $P = $POINTS * $rate - 0.5;
65                                         OUTPUT_HTML("<LI>".PAYOUT_IN.": <STRONG><A href=\"".URL."/modules.php?module=login&amp;what=payout&amp;payout=".$id."\">".$type." (".PAYOUT_MAX." ".round($P)." ".$type.")</A></STRONG></LI>");
66                                 }
67                         }
68
69                         // Free memory
70                         SQL_FREERESULT($result);
71                         OUTPUT_HTML("</UL></DIV>");
72                 }
73                  else
74                 {
75                         // No payout types setup so far
76                         OUTPUT_HTML("<P><FONT class=\"guest_failed\">".PAYOUT_NO_PAYOUT_TYPES."</FONT></P>");
77                 }
78         }
79          else
80         {
81                 // Points is empty
82                 OUTPUT_HTML("<P><FONT class=\"guest_failed\">".PAYOUT_NO_POINTS_ENTERED."</FONT></P>");
83         }
84 }
85 //
86 ?>