X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fdoubler_functions.php;h=ecec2572b34b0b0d446b13d2cc677d5c950afa8e;hp=c08c010a31edb6a45acceaba3d432fdec2f7024a;hb=0f3a135204757cc8750262871c8e62c42300acb4;hpb=508228c85fba8448d00865b1639cb8cd7a69e457 diff --git a/inc/libs/doubler_functions.php b/inc/libs/doubler_functions.php index c08c010a31..ecec2572b3 100644 --- a/inc/libs/doubler_functions.php +++ b/inc/libs/doubler_functions.php @@ -1,7 +1,7 @@ 0) { +function generateDoublerTable ($userid = NULL, $done = 'N', $ref = 'N', $sort = 'ASC') { + $add = ''; $DT_MODE = '0'; + if (isValidUserId($userid)) { // Load entries only from a single user - $ADD = " AND userid='".bigintval($uid)."'"; - $MODE = "member"; $COLS = "4"; $DT_MODE = "2"; - $NOT_FOUND = getMessage('DOUBLER_MEMBER_NO_ENTRIES_FOUND'); + $add = sprintf(" AND `userid`=%s", bigintval($userid)); + $mode = 'member'; $COLS = 4; $DT_MODE = 2; + $message = '{--MEMBER_DOUBLER_NO_ENTRIES_FOUND--}'; } else { // Guest mode! - $MODE = "guest"; $COLS = "3"; $DT_MODE = "3"; - $NOT_FOUND = getMessage('DOUBLER_GUEST_NO_ENTRIES_FOUND'); + $mode = 'guest'; $COLS = 3; $DT_MODE = 3; + $message = '{--GUEST_DOUBLER_NO_ENTRIES_FOUND--}'; } - if (($done == "Y") && ($sort == "ASC")) { + if (($done == 'Y') && ($sort == 'ASC')) { // Already payed out points (latest payouts first) $limit = getConfig('doubler_display_old'); - } elseif ($sort == "ASC") { + } elseif ($sort == 'ASC') { // List entries which will receive their payout soon $limit = getConfig('doubler_display_pay'); - } elseif ($sort == "DESC") { + } elseif ($sort == 'DESC') { // Newest entries $limit = getConfig('doubler_display_new'); } // List entries - $result = SQL_QUERY("SELECT userid, refid, points, timemark -FROM `{!_MYSQL_PREFIX!}_doubler` -WHERE completed='".$done."' AND is_ref='".$ref."'".$ADD." -ORDER BY timemark ".$sort." -LIMIT ".$limit, __FUNCTION__, __LINE__); + $result = SQL_QUERY_ESC("SELECT + `userid`,`refid`,`points`,`timemark` +FROM + `{?_MYSQL_PREFIX?}_doubler` +WHERE + `completed`='%s' AND + `is_ref`='%s' + " . $add . " +ORDER BY + `timemark` %s +LIMIT %s", + array( + $done, + $ref, + $sort, + $limit + ), __FUNCTION__, __LINE__); - if (SQL_NUMROWS($result) > 0) { + if (!SQL_HASZERONUMS($result)) { // List entries - $OUT = ""; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Rewrite userid/refid only if admin is in - if (IS_ADMIN()) { + // @TODO Can't this be moved into EL? + if (isAdmin()) { + // Set empty userid/refid + $content['userid'] = '---'; + $content['refid'] = '---'; + // Set links to admin area - if ($content['userid'] > 0) { $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']); } else { $content['userid'] = "---"; } - if ($content['refid'] > 0) { $content['refid'] = ADMIN_USER_PROFILE_LINK($content['refid']); } else { $content['refid'] = "---"; } + if (isValidUserId($content['userid'])) $content['userid'] = generateUserProfileLink($content['userid']); + if (isValidUserId($content['refid'])) $content['refid'] = generateUserProfileLink($content['refid']); } // END - if // Prepare data for the row template - $content = array( - 'uid' => $content['userid'], - 'rid' => $content['refid'], - 'points' => TRANSLATE_COMMA($content['points']), - 'stamp' => MAKE_DATETIME($content['timemark'], $DT_MODE), - 'sw' => $SW, - ); + $content['timemark'] = generateDateTime($content['timemark'], $DT_MODE); // Load template and switch color - $OUT .= LOAD_TEMPLATE($MODE."_doubler_list_rows", true, $content); - $SW = 3 - $SW; - } + $OUT .= loadTemplate($mode . '_doubler_list_rows', true, $content); + } // END - while // Free memory SQL_FREERESULT($result); } else { // List no entries - $OUT = " - - ".LOAD_TEMPLATE("admin_settings_saved", true, $NOT_FOUND)." + $OUT = ' + + ' . displayMessage($message, true) . ' -\n"; +'; } // Return template - return LOAD_TEMPLATE($MODE."_doubler_list", true, $OUT); + return loadTemplate($mode . '_doubler_list', true, $OUT); } -// -function DOUBLER_GET_TOTAL_POINTS_LEFT() { +// Get total points left in doubler pot +function getDoublerTotalPointsLeft() { // Initialize variables - $points = 0; + $points = '0'; - if (getConfig('doubler_own') == "Y") { + if (getConfig('doubler_own') == 'Y') { // Take points from doubler's own account $points += getConfig('doubler_points') - getConfig('doubler_used'); - } + } // END - if - if (getConfig('doubler_jackpot') == "Y") { + if ((getConfig('doubler_jackpot') == 'Y') && (isExtensionActive('jackpot'))) { // Load jackpot - $result = SQL_QUERY("SELECT points FROM `{!_MYSQL_PREFIX!}_jackpot` WHERE ok='ok' LIMIT 1", __FUNCTION__, __LINE__); - list($jackpot) = SQL_FETCHROW($result); - SQL_FREERESULT($result); + $jackpot = getJackpotPoints(); if (!empty($jackpot)) $points += $jackpot; - } + } // END - if - if (getConfig('doubler_uid') > 0) { + if (isValidUserId(getConfig('doubler_userid'))) { // Get user's points - $user = GET_TOTAL_DATA(getConfig('doubler_uid'), "user_points", "points"); + $user = getTotalPoints(getConfig('doubler_userid')); $points += $user; - } + } // END - if // Return value return $points; } -// + +//----------------------------------------------------------------------------- +// Wrapper functions for ext-doubler +//----------------------------------------------------------------------------- + +// "Getter" for doubler_userid +function getDoublerUserid () { + // Is it cached? + if (!isset($GLOBALS['doubler_userid'])) { + // Get it + $GLOBALS['doubler_userid'] = getConfig('doubler_userid'); + } // END - if + + // Return cache + return $GLOBALS['doubler_userid']; +} + +// "Getter" for doubler_timeout +function getDoublerTimeout () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('doubler_timeout'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for doubler_send_mode +function getDoublerSendMode () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('doubler_send_mode'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for doubler_ref +function getDoublerRef () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('doubler_ref'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for doubler_points +function getDoublerPoints () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('doubler_points'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for doubler_min +function getDoublerMin () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('doubler_min'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for doubler_max +function getDoublerMax () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('doubler_max'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for doubler_counter +function getDoublerCounter () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('doubler_counter'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// "Getter" for doubler_charge +function getDoublerCharge () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('doubler_charge'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// [EOF] ?>