]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-usr_online.php
Even more rewritten
[mailer.git] / inc / modules / admin / what-usr_online.php
index f40c4aec44632bca0583f9c54343caa7fa5836ad..88081d85906d8c016ed813fe6202f5a39cf587fa 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Wer ist wo? (KEINE Untermenues anhaengen!)       *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009)             $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // 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'));
 }
 
 //