aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin.php
blob: 036dbb5c1a46ccb7d527af5e7a7c492e05cd66cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

require_once 'conf/common.inc.php';
require_once 'inc/html.inc.php';

$host = $_GET['h'];
$plugin = $_GET['p'];

if ($_GET['a'] == 'del') {
	printf("<h3><span class=\"point\" onclick=\"javascript:getP('%s','%s')\"><img src=\"%s/layout/plus.gif\" alt=\"[+]\"> %s</span></h3>\n", $host, $plugin, $CONFIG['weburl'], $plugin);
} else {
	printf("<h3><span class=\"point\" onclick=\"javascript:rmP('%s','%s')\"><img src=\"%s/layout/minus.gif\" alt=\"[-]\"> %s</span></h3>\n", $host, $plugin, $CONFIG['weburl'], $plugin);
	graphs_from_plugin($host, $plugin);
}

?>