9ab7329ec72f39bdf6b3bcce7ca92983758f03dd
[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 (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 //
41 function PAYOUT_OUTPUT_PAYOUT_LIST ($points) {
42         // Replace german decimal comma with CPU's decimal dot
43         $points = strval(REVERT_COMMA($points));
44         if ($points > 0) {
45                 // Pay this out!
46                 $result = SQL_QUERY_ESC("SELECT id, type, rate, min_points
47 FROM `{!_MYSQL_PREFIX!}_payout_types`
48 WHERE %s >= min_points
49 ORDER BY type", array($points), __FUNCTION__, __LINE__);
50                 if (SQL_NUMROWS($result) > 0) {
51                         OUTPUT_HTML("<br /><div align=\"center\">
52 <div align=\"center\"><strong>{--PAYOUT_NOW--}:</strong></div><br />
53 <ul>");
54                         // Now let's check
55                         while (list($id, $type, $rate, $mpoi) = SQL_FETCHROW($result)) {
56                                 $type = COMPILE_CODE($type);
57                                 if ($points >= $mpoi) {
58                                         // Ok we found one
59                                         $P = $points * $rate - 0.5;
60                                         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>");
61                                 }
62                         }
63
64                         OUTPUT_HTML("</ul></div>");
65                 } else {
66                         // No payout types setup so far
67                         LOAD_TEMPLATE("admin_settings_saved", false, "<div class=\"guest_failed\">{--PAYOUT_NO_PAYOUT_TYPES--}</div");
68                 }
69
70                 // Free memory
71                 SQL_FREERESULT($result);
72         } else {
73                 // Points is empty
74                 LOAD_TEMPLATE("admin_settings_saved", false, "<div class=\"guest_failed\">{--PAYOUT_NO_POINTS_ENTERED--}</div");
75         }
76 }
77
78 // [EOF]
79 ?>