Next wave of lesser getMessage() usage and more EL
[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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 // Outputs all payout methods the user has
46 function outputPayoutList ($points) {
47         // Enougth points?
48         if ($points > 0) {
49                 // Pay this out!
50                 $result = SQL_QUERY_ESC("SELECT
51         `id`, `type`, `rate`, `min_points`
52 FROM
53         `{?_MYSQL_PREFIX?}_payout_types`
54 WHERE
55         %s >= `min_points`
56 ORDER BY
57         `type` ASC",
58                         array($points), __FUNCTION__, __LINE__);
59                 if (SQL_NUMROWS($result) > 0) {
60                         // Now let's check
61                         while ($content = SQL_FETCHARRAY($result)) {
62                                 // Are these points enougth?
63                                 if ($points >= $content['min_points']) {
64                                         // Prepare content for template
65                                         $content['points'] = translateComma($points * $content['rate'] - 0.5);
66
67                                         // Load row template
68                                         $OUT .= loadTemplate('member_payout_li', true, $content);
69                                 } // END - if
70                         } // END - while
71
72                         // Load main template
73                         loadTemplate('member_payout_list', true, $OUT);
74                 } else {
75                         // No payout types setup so far
76                         loadTemplate('admin_settings_saved', false, '<div class="guest_failed">{--MEMBER_PAYOUT_SETUP_INCOMPLETE--}</div>');
77                 }
78
79                 // Free memory
80                 SQL_FREERESULT($result);
81         } else {
82                 // Points is empty
83                 loadTemplate('admin_settings_saved', false, '<div class="guest_failed">{--MEMBER_PAYOUT_NO_POINTS_ENTERED--}</div>');
84         }
85 }
86
87 // "Translates" the payout status into a human-readable message
88 function translatePayoutStatus ($status) {
89         // Try to get a message from given status
90         $message = '{--PAYOUT_STATUS_' . strtoupper($status) . '--}';
91
92         // Return it
93 }
94
95 // [EOF]
96 ?>