X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=e9b9fdffadefed0da6dab5581be285e777063a11;hb=33e11a76a6d2d20d20d54ed1a7380ed1375bd3ed;hp=7305ba5d4f8510b29eca159513511384bf90e05f;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index 7305ba5d4f..e9b9fdffad 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Spezielle Funktionen * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -33,52 +38,45 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } -function AUTOPURGE_ADD_POINTS($uid, $points) -{ - global $jackpot; +function AUTOPURGE_ADD_POINTS($uid, $points) { // Check if he has locked points or not - $result = SQL_QUERY_ESC("SELECT ref_payout FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", - array(bigintval($uid)), __FILE__, __LINE__); + $result = SQL_QUERY_ESC("SELECT ref_payout FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", + array(bigintval($uid)), __FUNCTION__, __LINE__); list($payout) = SQL_FETCHROW($result); SQL_FREERESULT($result); - if (($payout > 0) && (!empty($payout))) - { + + if (($payout > 0) && (!empty($payout))) { // Yes, he has. $target = "locked_points"; - } - elseif ($payout == "0") - { + } elseif ($payout == '0') { // No, he has not $target = "points"; } + // Add points... - if (empty($payout)) - { + if (empty($payout)) { // ... to jackpot account ADD_JACKPOT($points); if (empty($jackpot)) $jackpot = 0; $jackpot += $points; - } - else - { + } else { // .. to user's account - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%s AND ref_depth=0 LIMIT 1", - array($target, $target, $points, bigintval($uid)), __FILE__, __LINE__); + SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET %s=%s+%s WHERE userid=%s AND ref_depth=0 LIMIT 1", + array($target, $target, $points, bigintval($uid)), __FUNCTION__, __LINE__); // Update mediadata as well - if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($target == "points")) - { + if ((GET_EXT_VERSION('mediadata') >= '0.0.4') && ($target == "points")) { // Update database - MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points); + MEDIA_UPDATE_ENTRY(array('total_points'), 'add', $points); } // Send out mail to user - $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", TRANSLATE_COMMA($points), $uid); - SEND_EMAIL($uid, AUTOPURGE_MEMBER_SUBJECT, $msg); + $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", translateComma($points), $uid); + sendEmail($uid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $msg); } }