]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-usr_online.php
A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / admin / what-usr_online.php
index 49cfbc878b132cd3cfb44a8adc602c635a0122de..c6b71d0673275d55f5dd260c7b73a0a356e3dc16 100644 (file)
@@ -43,16 +43,16 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
 // Online stats are only working if extension ext-online is installed
-if (EXT_IS_ACTIVE("online")) {
+if (EXT_IS_ACTIVE('online')) {
        // Count guests, members and admins
        // @TODO Rewrite these constants
        // @TODO Add a filter for sponsor
-       define('_GUESTS_ONLINE' , GET_TOTAL_DATA("N", "online", "id", "is_admin", true, " AND is_member='N'"));
-       define('_ADMINS_ONLINE' , GET_TOTAL_DATA("N", "online", "id", "is_admin", true, " AND is_member='Y'"));
-       define('_MEMBERS_ONLINE', GET_TOTAL_DATA("N", "online", "id", "is_admin", true));
+       define('_GUESTS_ONLINE' , GET_TOTAL_DATA("N", 'online', "id", "is_admin", true, " AND is_member='N'"));
+       define('_ADMINS_ONLINE' , GET_TOTAL_DATA("N", 'online', "id", "is_admin", true, " AND is_member='Y'"));
+       define('_MEMBERS_ONLINE', GET_TOTAL_DATA("N", 'online', "id", "is_admin", true));
 
        // Load template
        LOAD_TEMPLATE("admin_mini_online");
@@ -71,10 +71,10 @@ if (EXT_IS_ACTIVE("online")) {
                        if (empty($content['action'])) $content['action'] = "---";
                        if (empty($content['what']))   $content['what']   = "---";
 
-                       if ($content['is_admin'] == "Y") {
+                       if ($content['is_admin'] == 'Y') {
                                // Is an administrator
                                $content['userid'] = getMessage('_IS_ADMIN');
-                       } elseif (($content['is_member'] == "N") && ($content['is_admin'] == "N")) {
+                       } elseif (($content['is_member'] == 'N') && ($content['is_admin'] == 'N')) {
                                // Is a guest
                                $content['userid'] = getMessage('_IS_GUEST');
                        } elseif ($content['userid'] > 0) {
@@ -112,7 +112,7 @@ if (EXT_IS_ACTIVE("online")) {
        } // END - if
 } else {
        // Online statistics deactivated!
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ONLINE_STATISTICS_DEACTIVATED'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ONLINE_STATISTICS_DEACTIVATED'));
 }
 
 //