]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-surfbar_stats.php
Re-added, now the right ones
[mailer.git] / inc / modules / admin / what-surfbar_stats.php
index f9e34b061ad4656faed06d1ebf0585f10e99e710..a5fef5e64c45245130a1b352d70616756b234e23 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : URL-Statistiken fuer die Surfbar                 *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision:: 856                                                    $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
@@ -41,13 +46,13 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 ADD_DESCR("admin", __FILE__);
 
 // Is the 'url_id' set?
-if (isset($_GET['url_id'])) {
+if (REQUEST_ISSET_GET(('url_id'))) {
        // Generate general statistics
        $result = SQL_QUERY_ESC("SELECT `userid`, `count` AS `total_visits`, UNIX_TIMESTAMP(`last_online`) AS `last_online`
-FROM `"._MYSQL_PREFIX."_surfbar_stats`
+FROM `{!_MYSQL_PREFIX!}_surfbar_stats`
 WHERE `url_id`=%s
 ORDER BY `userid` ASC",
-               array(bigintval($_GET['url_id'])), __FILE__, __LINE__);
+               array(bigintval(REQUEST_GET('url_id'))), __FILE__, __LINE__);
 
        // Entries found?
        if (SQL_NUMROWS($result) > 0) {
@@ -80,12 +85,12 @@ ORDER BY `userid` ASC",
                LOAD_TEMPLATE("admin_surfbar_url_stats", false, $content);
        } else {
                // No statistics so far
-               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_URL_STATS);
+               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_SURFBAR_NO_URL_STATS'));
        }
 } else {
        // Generate general statistics
        $result = SQL_QUERY("SELECT `userid`, COUNT(`url_id`) AS `visited_urls`, SUM(`count`) AS `total_visits`
-FROM `"._MYSQL_PREFIX."_surfbar_stats`
+FROM `{!_MYSQL_PREFIX!}_surfbar_stats`
 GROUP BY `userid`
 ORDER BY `userid` ASC", __FILE__, __LINE__);
 
@@ -121,7 +126,7 @@ ORDER BY `userid` ASC", __FILE__, __LINE__);
                LOAD_TEMPLATE("admin_surfbar_stats", false, $content);
        } else {
                // No statistics so far
-               LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_SURFBAR_NO_STATS);
+               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_SURFBAR_NO_STATS'));
        }
 }