More HTML improvements
[mailer.git] / inc / libs / payout_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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                         // Now let's check
60                         while ($content = SQL_FETCHARRAY($result)) {
61                                 // Are these points enougth?
62                                 if ($points >= $content['min_points']) {
63                                         // Prepare content for template
64                                         $content['points'] = translateComma($points * $content['rate'] - 0.5);
65
66                                         // Load row template
67                                         $OUT .= loadTemplate('member_payout_li', true, $content);
68                                 } // END - if
69                         } // END - while
70
71                         // Load main template
72                         loadTemplate('member_payout_list', true, $OUT);
73                 } else {
74                         // No payout types setup so far
75                         loadTemplate('admin_settings_saved', false, '<div class="guest_failed">{--PAYOUT_NO_PAYOUT_TYPES--}</div>');
76                 }
77
78                 // Free memory
79                 SQL_FREERESULT($result);
80         } else {
81                 // Points is empty
82                 loadTemplate('admin_settings_saved', false, '<div class="guest_failed">{--PAYOUT_NO_POINTS_ENTERED--}</div>');
83         }
84 }
85
86 // [EOF]
87 ?>