]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_bonus.php
A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / admin / what-list_bonus.php
index 37786312a1a2c900ae8717634c4cd4cbba586ba8..de9ce4083e5ac286353e1a1215722fe016c5a8d4 100644 (file)
@@ -43,26 +43,26 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
-if (getConfig('bonus_active') == "Y") {
+if (getConfig('bonus_active') == 'Y') {
        // Shall I withdraw now?
        if (REQUEST_ISSET_POST(('withdraw'))) {
                // Okay, let's prepare...
                $curr = date("m", time()) - 1;
                if (strlen($curr) == 1) $curr = "0".$curr;
                UPDATE_CONFIG("last_month", $curr);
-               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BONUS_WITHDRAW_PREPARED'));
+               LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BONUS_WITHDRAW_PREPARED'));
        }
 
-       if (GET_EXT_VERSION("bonus") >= "0.6.9") {
+       if (GET_EXT_VERSION('bonus') >= '0.6.9') {
                // Add more bonus points here
                $USE = "(0";
-               if (getConfig('bonus_click_yn') == "Y") $USE .= " + turbo_bonus";
-               if (getConfig('bonus_login_yn') == "Y") $USE .= " + login_bonus";
-               if (getConfig('bonus_order_yn') == "Y") $USE .= " + bonus_order";
-               if (getConfig('bonus_stats_yn') == "Y") $USE .= " + bonus_stats";
-               if (getConfig('bonus_ref_yn')   == "Y") $USE .= " + bonus_ref";
+               if (getConfig('bonus_click_yn') == 'Y') $USE .= " + turbo_bonus";
+               if (getConfig('bonus_login_yn') == 'Y') $USE .= " + login_bonus";
+               if (getConfig('bonus_order_yn') == 'Y') $USE .= " + bonus_order";
+               if (getConfig('bonus_stats_yn') == 'Y') $USE .= " + bonus_stats";
+               if (getConfig('bonus_ref_yn')   == 'Y') $USE .= " + bonus_ref";
                $USE .= ")";
        } else {
                // Old version ???
@@ -70,8 +70,8 @@ if (getConfig('bonus_active') == "Y") {
        }
 
        // Autopurge installed?
-       $lastOnline = "%s"; $ONLINE = "";
-       if (EXT_IS_ACTIVE("autopurge")) {
+       $lastOnline = "%s"; $ONLINE = '';
+       if (EXT_IS_ACTIVE('autopurge')) {
                // Use last online timestamp to keep inactive members away from here
                $lastOnline   = " AND last_online >= (UNIX_TIMESTAMP() - %s)";
                $ONLINE = getConfig('ap_inactive_since');
@@ -86,13 +86,13 @@ ORDER BY points DESC, last_online DESC, userid",
 
        if (SQL_NUMROWS($result) > 0) {
                // List users
-               $OUT = "";$SW = 2; $cnt = 1; $total = 0;
+               $OUT = '';$SW = 2; $cnt = 1; $total = 0;
                while ($content = SQL_FETCHARRAY($result)) {
                        // Add total points
                        $total += $content['points'];
 
                        // Generate array fore the dynamic template
-                       $WIN1 = ""; $WIN2 = "";
+                       $WIN1 = ''; $WIN2 = '';
                        if ($cnt <= getConfig('bonus_ranks')) {
                                // Maybe he can win his active bonus?
                                $WIN1 = "<strong>";
@@ -127,21 +127,21 @@ ORDER BY points DESC, last_online DESC, userid",
                }
 
                // Prepare constant for timemark
-               if (EXT_IS_ACTIVE("autopurge")) {
+               if (EXT_IS_ACTIVE('autopurge')) {
                        define('__AUTOPURGE_TIMEOUT', MAKE_DATETIME(time() - getConfig('ap_inactive_since'), "2"));
                } else {
-                       define('__AUTOPURGE_TIMEOUT', sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), "autopurge"));
+                       define('__AUTOPURGE_TIMEOUT', sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'autopurge'));
                }
 
                // Load final template
                LOAD_TEMPLATE("admin_list_bonus");
        } else {
                // No one has become an "activity bonus"...
-               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BONUS_NO_ACTIVE_RALLYE'));
+               LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BONUS_NO_ACTIVE_RALLYE'));
        }
 } else {
        // Aktive-Rallye not activated
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_BONUS_RALLYE_DEACTIVATED'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_BONUS_RALLYE_DEACTIVATED'));
 }
 
 //