aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/html.inc.php
diff options
context:
space:
mode:
authorPim van den Berg2009-09-28 19:53:38 +0200
committerPim van den Berg2009-09-28 20:05:29 +0200
commitdb5bc6fbd9a568bd3267fecff076da455d5e23f7 (patch)
tree7d215ed55f1aee8a41172def9707e58e9d91c003 /inc/html.inc.php
parentadd a footer to each page (diff)
downloadapt-panopticon_cgp-db5bc6fbd9a568bd3267fecff076da455d5e23f7.zip
apt-panopticon_cgp-db5bc6fbd9a568bd3267fecff076da455d5e23f7.tar.gz
apt-panopticon_cgp-db5bc6fbd9a568bd3267fecff076da455d5e23f7.tar.bz2
apt-panopticon_cgp-db5bc6fbd9a568bd3267fecff076da455d5e23f7.tar.xz
change webdir/weburl and include/require usage
- Don't depend on includes from files that are included. - Don't use webdir with includes/requires (also because webdir couldn't be available in some cases). - Use common.inc.php instead of config.php in all plugins to have all configuration settings available.
Diffstat (limited to 'inc/html.inc.php')
-rw-r--r--inc/html.inc.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/inc/html.inc.php b/inc/html.inc.php
index 1001381..0a5b342 100644
--- a/inc/html.inc.php
+++ b/inc/html.inc.php
@@ -1,13 +1,17 @@
1<?php 1<?php
2 2
3require_once 'conf/common.inc.php';
4require_once 'inc/rrdtool.class.php';
5
3function html_start() { 6function html_start() {
7 global $CONFIG;
4 echo <<<EOT 8 echo <<<EOT
5<!DOCTYPE HTML> 9<!DOCTYPE HTML>
6<html> 10<html>
7<head> 11<head>
8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 12 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
9 <title>Collectd Graph Panel</title> 13 <title>Collectd Graph Panel</title>
10 <link rel="stylesheet" href="layout/style.css" type="text/css"> 14 <link rel="stylesheet" href="{$CONFIG['weburl']}/layout/style.css" type="text/css">
11</head> 15</head>
12<body> 16<body>
13 17
@@ -22,8 +26,6 @@ function html_end() {
22EOT; 26EOT;
23} 27}
24 28
25require_once 'conf/common.inc.php';
26require_once 'inc/rrdtool.class.php';
27function host_summary($hosts) { 29function host_summary($hosts) {
28 global $CONFIG; 30 global $CONFIG;
29 31