X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbonus_functions.php;h=eb23d167477cc9bd603773e27e78be3068046294;hb=ca11996eb52fa0a1ec45d6ab10f5331c4a54a116;hp=57d2dc975e1f4e4fa25b72b06fd3d4b9240101ac;hpb=e3934352dffa6eb9da59a137ae1a9414e5b4d80b;p=mailer.git diff --git a/inc/libs/bonus_functions.php b/inc/libs/bonus_functions.php index 57d2dc975e..eb23d16747 100644 --- a/inc/libs/bonus_functions.php +++ b/inc/libs/bonus_functions.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -256,7 +256,7 @@ function handleBonusPoints ($mode, $userid) { break; default: // This should not happen - debug_report_bug(__FUNCTION__, __LINE__, 'Invalid bonus-mode ' . getBonusMode() . ' detected.'); + reportBug(__FUNCTION__, __LINE__, 'Invalid bonus-mode ' . getBonusMode() . ' detected.'); break; } // END - switch @@ -279,7 +279,7 @@ function purgeExpiredTurboBonus() { // Wrapper Functions //----------------------------------------------------------------------------- -// Determines wether the "bonus rallye" is active +// Determines whether the "bonus rallye" is active function isBonusRallyeActive () { // Do we have cache? if (!isset($GLOBALS['bonus_rallye_active'])) { @@ -291,7 +291,7 @@ function isBonusRallyeActive () { return $GLOBALS['bonus_rallye_active']; } -// Determines wether the "bonus new_member_notify" is active +// Determines whether the "bonus new_member_notify" is active function isBonusNewMemberNotifyEnabled () { // Do we have cache? if (!isset($GLOBALS['bonus_new_member_notify_active'])) { @@ -351,5 +351,29 @@ function getTurboRates () { return $GLOBALS[__FUNCTION__]; } +// Getter for login_timeout +function getLoginTimeout () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('login_timeout'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + +// Getter for bonus_ref +function getBonusRef () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('bonus_ref'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + // [EOF] ?>