More usage of isValdUserId()
[mailer.git] / inc / libs / doubler_functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 02/17/2005 *
4  * ===================                          Last change: 02/17/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : doubler_functions.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for the guest's newsletter             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer den Newsletter an die Gaeste     *
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 }
44
45 // Generates a HTML table based on given data
46 // @TODO Lame description
47 function generateDoublerTable ($userid = '0', $done = 'N', $ref = 'N', $sort = 'ASC') {
48         if (empty($cnt)) $cnt = '0';
49         $add = ''; $DT_MODE = '0';
50         if (isValidUserId($userid)) {
51                 // Load entries only from a single user
52                 $add = sprintf(" AND `userid`=%s", bigintval($userid));
53                 $mode = 'member'; $COLS = 4; $DT_MODE = 2;
54                 $message = '{--MEMBER_DOUBLER_NO_ENTRIES_FOUND--}';
55         } else {
56                 // Guest mode!
57                 $mode = 'guest'; $COLS = 3; $DT_MODE = 3;
58                 $message = '{--GUEST_DOUBLER_NO_ENTRIES_FOUND--}';
59         }
60
61         if (($done == 'Y') && ($sort == 'ASC')) {
62                 // Already payed out points (latest payouts first)
63                 $limit = getConfig('doubler_display_old');
64         } elseif ($sort == 'ASC') {
65                 // List entries which will receive their payout soon
66                 $limit = getConfig('doubler_display_pay');
67         } elseif ($sort == 'DESC') {
68                 // Newest entries
69                 $limit = getConfig('doubler_display_new');
70         }
71
72         // List entries
73         $result = SQL_QUERY_ESC("SELECT
74         `userid`, `refid`, `points`, `timemark`
75 FROM
76         `{?_MYSQL_PREFIX?}_doubler`
77 WHERE
78         `completed`='%s' AND `is_ref`='%s'" . $add . "
79 ORDER BY
80         `timemark` %s
81 LIMIT %s",
82                 array(
83                         $done,
84                         $ref,
85                         $sort,
86                         $limit
87                 ), __FUNCTION__, __LINE__);
88
89         if (!SQL_HASZERONUMS($result)) {
90                 // List entries
91                 $OUT = '';
92                 while ($content = SQL_FETCHARRAY($result)) {
93                         // Rewrite userid/refid only if admin is in
94                         // @TODO Can't this be moved into EL?
95                         if (isAdmin()) {
96                                 // Set empty userid/refid
97                                 $content['userid'] = '---';
98                                 $content['refid']  = '---';
99
100                                 // Set links to admin area
101                                 if (isValidUserId($content['userid'])) $content['userid'] = generateUserProfileLink($content['userid']);
102                                 if (isValidUserId($content['refid']))  $content['refid']  = generateUserProfileLink($content['refid']);
103                         } // END - if
104
105                         // Prepare data for the row template
106                         $content['timemark'] = generateDateTime($content['timemark'], $DT_MODE);
107
108                         // Load template and switch color
109                         $OUT .= loadTemplate($mode . '_doubler_list_rows', true, $content);
110                 } // END - while
111
112                 // Free memory
113                 SQL_FREERESULT($result);
114         } else {
115                 // List no entries
116                 $OUT = '<tr>
117   <td colspan="' . $COLS . '" align="center" class="doubler_big_row bottom">
118     ' . loadTemplate('admin_settings_saved', true, $message) . '
119   </td>
120 </tr>';
121         }
122
123         // Return template
124         return loadTemplate($mode . '_doubler_list', true, $OUT);
125 }
126
127 // Get total points left in doubler pot
128 function getDoublerTotalPointsLeft() {
129         // Initialize variables
130         $points = '0';
131
132         if (getConfig('doubler_own') == 'Y') {
133                 // Take points from doubler's own account
134                 $points += getConfig('doubler_points') - getConfig('doubler_used');
135         } // END - if
136
137         if ((getConfig('doubler_jackpot') == 'Y') && (isExtensionActive('jackpot'))) {
138                 // Load jackpot
139                 $jackpot = getJackpotPoints();
140
141                 if (!empty($jackpot)) $points += $jackpot;
142         } // END - if
143
144         if (isValidUserId(getConfig('doubler_userid'))) {
145                 // Get user's points
146                 $user = getTotalPoints(getConfig('doubler_userid'));
147                 $points += $user;
148         } // END - if
149
150         // Return value
151         return $points;
152 }
153
154 // "Getter" for doubler_userid
155 function getDoublerUserid () {
156         // Is it cached?
157         if (!isset($GLOBALS['doubler_userid'])) {
158                 // Get it
159                 $GLOBALS['doubler_userid'] = getConfig('doubler_userid');
160         } // END - if
161
162         // Return cache
163         return $GLOBALS['doubler_userid'];
164 }
165
166 // [EOF]
167 ?>