diff options
Diffstat (limited to '')
-rw-r--r-- | type/Base.class.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/type/Base.class.php b/type/Base.class.php index 5de381e..4cb9e18 100644 --- a/type/Base.class.php +++ b/type/Base.class.php | |||
@@ -36,7 +36,19 @@ class Type_Base { | |||
36 | $this->rrdtool_opts = $config['rrdtool_opts']; | 36 | $this->rrdtool_opts = $config['rrdtool_opts']; |
37 | $this->cache = $config['cache']; | 37 | $this->cache = $config['cache']; |
38 | $this->parse_get($_get); | 38 | $this->parse_get($_get); |
39 | $this->rrd_title = $this->args['plugin']; | 39 | $this->rrd_title = sprintf( |
40 | '%s%s%s%s', | ||
41 | $this->args['plugin'], | ||
42 | $this->args['type'] != $this->args['plugin'] | ||
43 | ? sprintf(' %s', $this->args['type']) | ||
44 | : '', | ||
45 | (isset($this->args['pinstance']) and $this->args['pinstance'] != '') | ||
46 | ? sprintf(' (%s)', $this->args['pinstance']) | ||
47 | : '', | ||
48 | (isset($this->args['category']) and $this->args['category'] != '') | ||
49 | ? sprintf(' (%s)', $this->args['category']) | ||
50 | : '' | ||
51 | ); | ||
40 | $this->rrd_files(); | 52 | $this->rrd_files(); |
41 | $this->width = isset($_get['x']) ? $_get['x'] : $config['width']; | 53 | $this->width = isset($_get['x']) ? $_get['x'] : $config['width']; |
42 | $this->height = isset($_get['y']) ? $_get['y'] : $config['height']; | 54 | $this->height = isset($_get['y']) ? $_get['y'] : $config['height']; |