More other options moved out (to config_order)
[mailer.git] / inc / modules / admin / what-usage.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/15/2003 *
4  * ===============                              Last change: 04/02/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-usage.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Auto-detection of usage statistics               *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Automatische Erkennung der Aufrufstatistiken     *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 OPEN_TABLE("100%", "admin_content admin_content_align", "");
44 $usage = "usage/";
45 if (!empty($_GET['image']))
46 {
47         if ($_GET['type'] == "usage")
48         {
49                 $file = PATH.$usage."usage.png";
50         }
51          else
52         {
53                 if (strpos($_GET['image'], "\\") > 0) $_GET['image'] = substr($_GET['image'], 0, strpos($_GET['image'], "\\"));
54                 $file = PATH.$usage.$_GET['type']."_usage_".$_GET['image'].".png";
55         }
56         if (file_exists($file))
57         {
58                 $image = imagecreatefrompng($file);
59                 header("Content-type: image/png");
60                 imagepng($image);
61                 imagedestroy($image);
62         }
63         exit();
64 }
65  elseif (empty($_GET['usage']))
66 {
67         $file = PATH.$usage."index.html";
68 }
69  else
70 {
71         $file = sprintf("%s%susage_%s.html",
72                 PATH,
73                 $usage,
74                 SQL_ESCAPE($_GET['usage'])
75         );
76 }
77 if ($file !="")
78 {
79         if (file_exists($file) && is_readable($file))
80         {
81                         $tmpl_file = implode("", file($file));
82                         $tmpl_file = addslashes($tmpl_file);
83                         $tmpl_file = "\$content=\"".$tmpl_file."\";";
84                         eval($tmpl_file);
85                         $content = str_replace("usage.png", URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&type=usage&image=usage", $content);
86                         $content = str_replace("daily_usage_", URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&type=daily&image=", $content);
87                         $content = str_replace("hourly_usage_", URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&type=hourly&image=", $content);
88                         $content = str_replace("ctry_usage_", URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&type=ctry&image=", $content);
89                         $content = str_replace("usage_", URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&usage=", str_replace(".html", "", $content));
90                         // Disabled due to too much trouble
91                         //$content = str_replace("HREF=\"http://", "href=\"".URL."/modules.php?module=loader&amp;url=http://", $content);
92                         $test = strtolower($content);
93                         $body_start = strpos($test, "<body");
94                         $body_end   = strpos($test, "</body>");
95                         if (($body_start > 0) && ($body_end > 0))
96                         {
97                                 $content = substr(substr($content, 0, $body_end), $body_start);
98                                 $content = substr($content, strpos($content, ">") + 1);
99                                 OUTPUT_HTML("<DIV align=\"left\">
100   ".$content."
101 </DIV>");
102                         }
103         }
104 }
105 CLOSE_TABLE();
106 //
107 ?>