aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/swap.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 /plugin/swap.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 'plugin/swap.php')
-rw-r--r--plugin/swap.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/swap.php b/plugin/swap.php
index dfd9ba1..d1ba823 100644
--- a/plugin/swap.php
+++ b/plugin/swap.php
@@ -2,8 +2,8 @@
2 2
3# Collectd Swap plugin 3# Collectd Swap plugin
4 4
5require_once $CONFIG['webdir'].'/conf/config.php'; 5require_once 'conf/common.inc.php';
6require_once $CONFIG['webdir'].'/type/GenericStacked.class.php'; 6require_once 'type/GenericStacked.class.php';
7 7
8## LAYOUT 8## LAYOUT
9# swap/ 9# swap/
@@ -12,7 +12,7 @@ require_once $CONFIG['webdir'].'/type/GenericStacked.class.php';
12# swap/swap-used.rrd 12# swap/swap-used.rrd
13 13
14# grouped 14# grouped
15require_once $CONFIG['webdir'].'/inc/collectd.inc.php'; 15require_once 'inc/collectd.inc.php';
16$tinstance = collectd_plugindetail($host, $plugin, 'ti'); 16$tinstance = collectd_plugindetail($host, $plugin, 'ti');
17 17
18$obj = new Type_GenericStacked; 18$obj = new Type_GenericStacked;