X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fbonus_functions.php;h=af551a1b82a40a81f378f4a6dd58682ce3a8244c;hb=7cb246c51e8634735aaf24e546bcbc46c5ce3833;hp=556473257cc3fc5cd528ed8e3bccce719b7a21e0;hpb=a3921e6e7dac39605faa4f9194ff428c331002dc;p=mailer.git diff --git a/inc/libs/bonus_functions.php b/inc/libs/bonus_functions.php index 556473257c..af551a1b82 100644 --- a/inc/libs/bonus_functions.php +++ b/inc/libs/bonus_functions.php @@ -284,5 +284,50 @@ function purgeExpiredTurboBonus() { } // END - if } +/////////////////////////////////////////////////////////////////////////////// +// Only filter functions +/////////////////////////////////////////////////////////////////////////////// + +// Filter for adding login bonus to the user's account +function FILTER_ADD_LOGIN_BONUS () { + // Is the user data valid? + if (!isMember()) { + // Do only run for logged in members + debug_report_bug('Please only run this filter for logged in users.'); + } // END - if + + // Bonus is not given by default ;-) + $bonus = false; + if ((isExtensionInstalledAndNewer('sql_patches', '0.2.8')) && (getConfig('bonus_active') == 'Y') && (getConfig('bonus_login_yn') == 'Y')) { + // Update last login if far enougth away + // @TODO This query isn't right, it will only update if the user was for a longer time away! + SQL_QUERY_ESC("UPDATE + `{?_MYSQL_PREFIX?}_user_data` +SET + `last_login`=UNIX_TIMESTAMP() +WHERE + `userid`=%s AND + `last_login` < (UNIX_TIMESTAMP() - {?login_timeout?}) +LIMIT 1", + array( + getMemberId() + ), __FILE__, __LINE__ + ); + + // Updated entry? + $bonus = (SQL_AFFECTEDROWS() == 1); + } // END - if + + if (($bonus === true) && (getRequestElement('mode') == 'bonus')) { + // Output message with added points + $GLOBALS['message'] .= "
+ ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), translateComma(getConfig('login_bonus')))." +
"; + } elseif (isExtensionActive('bonus')) { + // No login bonus added! + $GLOBALS['message'] .= "
{--BONUS_LOGIN_BONUS_NOT_ADDED--}
"; + } +} + // [EOF] ?>