= "0.3.5") && ($_CONFIG['bonus_mode'] != "ADD") && ($points > 0)) BONUS_POINTS_HANDLER($points);
}
//
function BONUS_MAKE_RANK_ROWS($data, $type, $uid)
{
global $_CONFIG;
$self = false; $OUT = "";
// How many ranks do we have?
$ranks = sizeof(explode(";", $_CONFIG['bonus_ranks'])) + 1;
// Load current user's data
$result = SQL_QUERY_ESC("SELECT level, points, timemark FROM "._MYSQL_PREFIX."_bonus_turbo WHERE %s=%s AND userid=%s LIMIT 1",
array($type, $data, $uid), __FILE__, __LINE__);
if (SQL_NUMROWS($result) == 1)
{
// Load data
list($rank, $points, $mark) = SQL_FETCHROW($result);
// Remember all values for later use
$self = true; $points = TRANSLATE_COMMA($points);
// Transfer data to template
define('__YR_LEVEL' , $rank);
define('__YR_POINTS', $points);
define('__YR_TMARK' , MAKE_DATETIME($mark, "1"));
// Load template
define('__YOUR_RANKING_LINE', LOAD_TEMPLATE("show_bonus_yr", true));
}
// Load rankings
$result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_bonus_turbo WHERE %s=%s ORDER BY level LIMIT %s",
array($type, $data, $_CONFIG['bonus_lines']), __FILE__, __LINE__);
if (SQL_NUMROWS($result) > 0)
{
// Start generating the ranking list
$max = SQL_NUMROWS($result);
$SW = 2;
for ($rank = 1; $rank <= $max; $rank++)
{
// Load data
$result_users = SQL_QUERY_ESC("SELECT userid, points, timemark FROM "._MYSQL_PREFIX."_bonus_turbo WHERE %s=%s AND level='%s' LIMIT 1",
array($type, $data, $rank), __FILE__, __LINE__);
list($userid, $points, $mark) = SQL_FETCHROW($result_users);
// Are you one of them?
if (empty($userid))
{
// Nothing found
$userid = "---"; $points = "---";
}
else
{
// Translate comma
$points = TRANSLATE_COMMA($points);
}
// Output row
$OUT .= "
".$rank.". |
".$userid." |
".$points." |
\n";
$SW = 3 - $SW;
}
if (!$self)
{
// If current user was not found set constant
define('__YOUR_RANKING_LINE', BONUS_RANK_YOU_ARE_NOT_FOUND);
}
}
else
{
// No entries found!
$OUT = "
".BONUS_NO_RANKS_1.$data.BONUS_NO_RANKS_2."
|
\n";
define('__YOUR_RANKING_LINE', "");
}
return $OUT;
}
//
function BONUS_POINTS_HANDLER($MODE)
{
global $_CONFIG;
// Shall we add bonus points?
if ($_CONFIG['bonus_active'] == "N") return;
// Switch to jackpot-mode when no UID is supplied but userid-mode is selected
if (($_CONFIG['bonus_mode'] == "UID") && ($_CONFIG['bonus_uid'] == "0")) $_CONFIG['bonus_mode'] = "JACKPOT";
if ($MODE == "login_bonus")
{
// Login bonus detected
$points = $_CONFIG['login_bonus'];
}
else
{
// Direct points supplied
$points = $MODE;
}
// Subtract points from...
switch ($_CONFIG['bonus_mode'])
{
case "JACKPOT": // ... jackpot
if ((SUB_JACKPOT($points) == -1) && ($_CONFIG['bonus_uid'] > 0))
{
// Check points amount first...
$TOTAL = GET_TOTAL_DATA($_CONFIG['bonus_uid'], "user_points", "points") - GET_TOTAL_DATA($_CONFIG['bonus_uid'], "user_data", "used_points");
if ($TOTAL >= $points)
{
// Subtract points from userid's account
SUB_POINTS($_CONFIG['bonus_uid'], $points);
}
}
break;
case "UID": // ... userid's account
// Check his amount first
$TOTAL = GET_TOTAL_DATA($_CONFIG['bonus_uid'], "user_points", "points") - GET_TOTAL_DATA($_CONFIG['bonus_uid'], "user_data", "used_points");
if ($TOTAL >= $points)
{
// Subtract points from userid's account
SUB_POINTS($_CONFIG['bonus_uid'], $points);
}
else
{
// Try to subtract from jackpot
$dummy = SUB_JACKPOT($points);
}
break;
}
}
//
function BONUS_PURGE_EXPIRED_TURBO_BONUS()
{
global $_CONFIG;
// Remove entries
$result = SQL_QUERY("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_bonus_turbo WHERE timemark < (UNIX_TIMESTAMP() - ".$_CONFIG['bonus_timeout'].")", __FILE__, __LINE__);
if (SQL_AFFECTEDROWS() > 0) {
// Send out email to admin
SEND_ADMIN_NOTIFICATION(AUTOPURGE_ADMIN_TURBO_SUBJECT, "admin_autopurge_turbo", $DELETED, "");
}
}
//
?>