]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-usr_online.php
Next wave of lesser getMessage() usage and more EL
[mailer.git] / inc / modules / admin / what-usr_online.php
index eb9e1dbb9364c81bbc73ba8fe3c2be2cd5b15e8d..a19cb85f150682a19a9c490b56b40eebd2464f46 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 01/14/2005 *
- * ================                             Last change: 01/14/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 01/14/2005 *
+ * ===================                          Last change: 01/14/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-usr_online.php                              *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -39,7 +40,7 @@
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
 addMenuDescription('admin', __FILE__);
@@ -53,7 +54,7 @@ if (isExtensionActive('online')) {
        $content['members_online'] = countSumTotalData('N', 'online', 'id', 'is_admin', true);
 
        // Load template
-       loadTemplate('admin_mini_online');
+       loadTemplate('admin_mini_online', false, $content);
 
        // Check for online users
        $result = SQL_QUERY("SELECT `id`, `ip`, `userid`, `refid`, `module`, `action`, `what`, `is_member`, `is_admin`, `timestamp` FROM `{?_MYSQL_PREFIX?}_online` ORDER by `timestamp` DESC",
@@ -61,34 +62,28 @@ if (isExtensionActive('online')) {
        if (SQL_NUMROWS($result) > 0) {
                // List all online users
                $OUT = ''; $SW = 2;
-               while ($content = SQL_FETCHARRAY($result)) {
+               while ($row = SQL_FETCHARRAY($result)) {
                        // Fix empty action/what
-                       if (empty($content['action'])) $content['action'] = '---';
-                       if (empty($content['what']))   $content['what']   = '---';
+                       if (empty($row['action'])) $row['action'] = '---';
+                       if (empty($row['what']))   $row['what']   = '---';
 
-                       if ($content['is_admin'] == 'Y') {
+                       if ($row['is_admin'] == 'Y') {
                                // Is an administrator
-                               $content['userid'] = getMessage('_IS_ADMIN');
-                       } elseif (($content['is_member'] != 'Y') && ($content['is_admin'] != 'Y')) {
+                               $row['userid'] = '{--_IS_ADMIN--}';
+                       } elseif (($row['is_member'] != 'Y') && ($row['is_admin'] != 'Y')) {
                                // Is a guest
-                               $content['userid'] = getMessage('_IS_GUEST');
-                       } elseif ($content['userid'] > 0) {
+                               $row['userid'] = '{--_IS_GUEST--}';
+                       } elseif (isValidUserId($row['userid'])) {
                                // Add profile link to userid
-                               $content['userid'] = generateUserProfileLink($content['userid']);
-                       } // END - if
-
-                       // Is the refid set?
-                       if ($content['refid'] > 0) {
-                               // Add profile link to referer id
-                               $content['refid'] = generateUserProfileLink($content['refid']);
-                       } // END - if
+                               $row['userid'] = generateUserProfileLink($row['userid']);
+                       }
 
                        // Add more content
-                       $content['sw'] = $SW;
-                       $content['timestamp'] = generateDateTime($content['timestamp'], '2');
+                       $row['sw'] = $SW;
+                       $row['timestamp'] = generateDateTime($row['timestamp'], 2);
 
                        // Load row template and switch color
-                       $OUT .= loadTemplate('admin_list_online_row', true, $content);
+                       $OUT .= loadTemplate('admin_list_online_row', true, $row);
                        $SW = 3 - $SW;
                } // END - while
 
@@ -97,14 +92,14 @@ if (isExtensionActive('online')) {
 
                // Remember rows and fancy time in array
                $content['rows']           = $OUT;
-               $content['online_timeout'] = createFancyTime(getConfig('online_timeout'));
+               $content['online_timeout'] = '{--ONLINE_TIMEOUT_IS--}';
 
                // Load footer template
                loadTemplate('admin_list_online', false, $content);
        } // END - if
 } else {
        // Online statistics deactivated!
-       loadTemplate('admin_settings_saved', false, getMessage('ONLINE_STATISTICS_DEACTIVATED'));
+       loadTemplate('admin_settings_saved', false, '{--ONLINE_STATISTICS_DEACTIVATED--}');
 }
 
 // [EOF]