A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / filter / bonus_filter.php
index 33c129033884fbc0bee24ff58572e4fa366332a0..4520937f457d1eb3ad487c6a8c770b77014727f3 100644 (file)
@@ -51,7 +51,7 @@ function FILTER_ADD_LOGIN_BONUS ($filterData) {
 
        // Bonus is not given by default ;-)
        $bonus = false;
-       if ((isExtensionInstalledAndNewer('sql_patches', '0.2.8')) && (isBonusRallyeActive()) && (getConfig('bonus_login_yn') == 'Y')) {
+       if ((isExtensionInstalledAndNewer('sql_patches', '0.2.8')) && (isBonusRallyeActive()) && (getConfig('include_bonus_login') == '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
@@ -98,5 +98,24 @@ function FILTER_GENERATE_BONUS_MAIL_LINKS ($filterData) {
        return $filterData;
 }
 
+// Filter for adding bonus columns with a plus (+) sign
+function FILTER_ADD_BONUS_POINTS_USER_COLUMNS ($add = '') {
+       // Skip out-dated extension, because this causes an error
+       if (isExtensionInstalledAndOlder('bonus', '0.9.7')) {
+               // Skip this silently
+               return $add;
+       } // END - if
+
+       // Add more columns only when the corresponding configuration is enabled, too
+       if (getConfig('include_bonus_click') == 'Y') $add .= ' + `turbo_bonus`';
+       if (getConfig('include_bonus_login') == 'Y') $add .= ' + `login_bonus`';
+       if (getConfig('include_bonus_order') == 'Y') $add .= ' + `bonus_order`';
+       if (getConfig('include_bonus_stats') == 'Y') $add .= ' + `bonus_stats`';
+       if (getConfig('include_bonus_ref')   == 'Y') $add .= ' + `bonus_ref`';
+
+       // Return $add
+       return $add;
+}
+
 // [EOF]
 ?>