X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=12181ed9dacfe6bea89b51235c9b51af6f7ace36;hb=2379934be6a196a54f4155bb8e24c49b20736969;hp=fe3cdd4b586c22d6f55f2e95f96677966c55089b;hpb=ffe213c8e3f85119ddd5544214d0de9ecb833d98;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index fe3cdd4b58..12181ed9da 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -14,11 +14,9 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -44,24 +42,55 @@ if (!defined('__SECURITY')) { // Add points in autopurge-mode function addPointsAutoPurge ($userid, $points) { + // Is the userid valid? + if (!isValidUserId($userid)) { + // Please report all these bugs + debug_report_bug(__FUNCTION__, __LINE__, 'Invalid call. userid=' . $userid . ',points=' . $points); + } // END - if + // Add points over the ref system directly now - addPointsDirectly('autopurge_add', $userid, $points); + initReferalSystem(); + addPointsThroughReferalSystem('autopurge_add', $userid, $points); // Send out mail to user $message = loadEmailTemplate('member_autopurge_points', array('points' => $points), $userid); - sendEmail($userid, '{--AUTOPURGE_MEMBER_SUBJECT--}', $message); + sendEmail($userid, '{--MEMBER_AUTOPURGE_SUBJECT--}', $message); } -// Checks wether auto-purging is active +// Checks wether auto-purging is enabled function isAutoPurgingActive () { // Do we have cache? - if (!isset($GLOBALS['auto_purging_active'])) { + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getConfig('auto_purge_active') == 'Y'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Wrapper for 'autopurge_inactive +function getAutopurgeInactive () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = (getConfig('autopurge_inactive') == 'Y'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Checks wether purging of inactive accounts is enabled +function isAutopurgeInactiveEnabled () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { // Determine it - $GLOBALS['auto_purging_active'] = (getConfig('auto_purge_active') == 'Y'); + $GLOBALS[__FUNCTION__] = (getAutopurgeInactive() == 'Y'); } // END - if // Return cache - return $GLOBALS['auto_purging_active']; + return $GLOBALS[__FUNCTION__]; } // [EOF]