X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=dcdadc845370d6a65c614527053211c48f7c58da;hb=cd06fbc228eff8b408816c70fd37ed9f8b59a305;hp=7318af10785ddba49a27e50dd7827493306eaeb1;hpb=75ad748a68473ace540251427a74fb781b1145e9;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index 7318af1078..dcdadc8453 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * 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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,56 +37,19 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); +if (!defined('__SECURITY')) { + die(); } -function AUTOPURGE_ADD_POINTS($uid, $points) -{ - global $jackpot; - // Check if he has locked points or not - $result = SQL_QUERY_ESC("SELECT ref_payout FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1", - array(bigintval($uid)), __FILE__, __LINE__); - list($payout) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - if (($payout > 0) && (!empty($payout))) - { - // Yes, he has. - $target = "locked_points"; - } - elseif ($payout == "0") - { - // No, he has not - $target = "points"; - } - // Add points... - if (empty($payout)) - { - // ... to jackpot account - ADD_JACKPOT($points); - if (empty($jackpot)) $jackpot = "0"; - $jackpot += $points; - } - else - { - // .. to user's account - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%d AND ref_depth='0' LIMIT 1", - array($target, $target, $points, bigintval($uid)), __FILE__, __LINE__); - - // Update mediadata as well - if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($target == "points")) - { - // Update database - MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points); - } +// Add points in autopurge-mode +function addPointsAutoPurge ($userid, $points) { + // Add points over the ref system directly now + addPointsDirectly('autopurge_add', $userid, $points); - // Send out mail to user - $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", TRANSLATE_COMMA($points), $uid); - SEND_EMAIL($uid, AUTOPURGE_MEMBER_SUBJECT, $msg); - } + // Send out mail to user + $message = loadEmailTemplate('member_autopurge_points', translateComma($points), $userid); + sendEmail($userid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $message); } -// +// [EOF] ?>