From 133a6dff495236e2d3a4eb70081ddb1448765625 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Mon, 31 Oct 2011 20:33:05 +0100 Subject: (html) file generator --- htmlreport/gen-html.php | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 htmlreport/gen-html.php (limited to 'htmlreport/gen-html.php') diff --git a/htmlreport/gen-html.php b/htmlreport/gen-html.php new file mode 100644 index 0000000..f495622 --- /dev/null +++ b/htmlreport/gen-html.php @@ -0,0 +1,36 @@ + $name) { + $data[$id]['name'] = $name; + foreach (array('humidity', 'temperature') as $item) { + $lu = rrd_lastupdate( + str_replace( + array('{item}', '{id}'), + array($item, $id), + $filetemplate + ) + ); + if ($lu === false) { + throw new Exception(rrd_error()); + } + + $data[$id][$item] = reset($lu['data']); + } +} + +foreach (glob(__DIR__ . '/templates/*.php') as $tplfile) { + $outfile = $outdir . basename($tplfile, '.php'); + ob_start(); + include $tplfile; + $content = ob_get_contents(); + ob_end_clean(); + file_put_contents($outfile, $content); +} +?> \ No newline at end of file -- cgit v1.2.3