Huge script change, see http://forum.mxchange.org/topic-458.html for details:
[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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Outputs all payout methods the user has
45 function outputPayoutList ($points) {
46         // Enougth points?
47         if ($points > 0) {
48                 // Pay this out!
49                 $result = SQL_QUERY_ESC("SELECT
50         `id`, `type`, `rate`, `min_points`
51 FROM
52         `{?_MYSQL_PREFIX?}_payout_types`
53 WHERE
54         %s >= `min_points`
55 ORDER BY
56         `type` ASC",
57                         array($points), __FUNCTION__, __LINE__);
58                 if (SQL_NUMROWS($result) > 0) {
59                         outputHtml("<br /><div align=\"center\">
60 <div align=\"center\"><strong>{--PAYOUT_NOW--}:</strong></div><br />
61 <ul>");
62                         // Now let's check
63                         while ($content = SQL_FETCHARRAY($result)) {
64                                 // Compile the type
65                                 $content['type'] = compileCode($content['type']);
66
67                                 // Are these points enougth?
68                                 if ($points >= $content['min_points']) {
69                                         // Ok we found one
70                                         $P = translateComma($points * $content['rate'] - 0.5);
71                                         outputHtml("<li>{--PAYOUT_IN--}: <strong><a href=\"{?URL?}/modules.php?module=login&amp;what=payout&amp;payout=".$content['id']."\">".$content['type']." ({--PAYOUT_MAX--} ".$P." ".$content['type'].")</a></strong></li>");
72                                 } // END - if
73                         } // END - while
74
75                         outputHtml("</ul></div>");
76                 } else {
77                         // No payout types setup so far
78                         loadTemplate('admin_settings_saved', false, "<div class=\"guest_failed\">{--PAYOUT_NO_PAYOUT_TYPES--}</div");
79                 }
80
81                 // Free memory
82                 SQL_FREERESULT($result);
83         } else {
84                 // Points is empty
85                 loadTemplate('admin_settings_saved', false, "<div class=\"guest_failed\">{--PAYOUT_NO_POINTS_ENTERED--}</div");
86         }
87 }
88
89 // [EOF]
90 ?>