2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 02/17/2005 *
4 * =================== Last change: 02/17/2005 *
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 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
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';
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 = '{--DOUBLER_MEMBER_NO_ENTRIES_FOUND--}';
57 $mode = 'guest'; $COLS = 3; $DT_MODE = 3;
58 $message = '{--DOUBLER_GUEST_NO_ENTRIES_FOUND--}';
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') {
69 $limit = getConfig('doubler_display_new');
73 $result = SQL_QUERY_ESC("SELECT
74 `userid`, `refid`, `points`, `timemark`
76 `{?_MYSQL_PREFIX?}_doubler`
78 `completed`='%s' AND `is_ref`='%s'" . $add . "
87 ), __FUNCTION__, __LINE__);
89 if (SQL_NUMROWS($result) > 0) {
92 while ($content = SQL_FETCHARRAY($result)) {
93 // Rewrite userid/refid only if admin is in
94 // @TODO Can't this be moved into EL?
96 // Set empty userid/refid
97 $content['userid'] = '---';
98 $content['refid'] = '---';
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']);
105 // Prepare data for the row template
107 'userid' => $content['userid'],
108 'rid' => $content['refid'],
109 'points' => $content['points'],
110 'timemark' => generateDateTime($content['timemark'], $DT_MODE),
113 // Load template and switch color
114 $OUT .= loadTemplate($mode . '_doubler_list_rows', true, $content);
118 SQL_FREERESULT($result);
122 <td colspan="' . $COLS . '" align="center" class="doubler_big_row bottom">
123 ' . loadTemplate('admin_settings_saved', true, $message) . '
129 return loadTemplate($mode . '_doubler_list', true, $OUT);
132 // Get total points left in doubler pot
133 function getDoublerTotalPointsLeft() {
134 // Initialize variables
137 if (getConfig('doubler_own') == 'Y') {
138 // Take points from doubler's own account
139 $points += getConfig('doubler_points') - getConfig('doubler_used');
142 if ((getConfig('doubler_jackpot') == 'Y') && (isExtensionActive('jackpot'))) {
144 $jackpot = getJackpotPoints();
146 if (!empty($jackpot)) $points += $jackpot;
149 if (getConfig('doubler_userid') > 0) {
151 $user = countSumTotalData(getConfig('doubler_userid'), 'user_points', 'points');