Files
librenms-librenms/html/pages/device/ifgraphs.inc.php
T
Adam Amstrong 44d1431f94 lots of fixes for non-webroot installations
git-svn-id: http://www.observium.org/svn/observer/trunk@362 61d68cd4-352d-0410-923a-c4978735b2b8
2009-03-23 17:32:25 +00:00

17 lines
639 B
PHP

<?php
echo("
<div style='float: right; text-align: right;'>
<a href='".$config['base_url']."/?page=device&id=" . $_GET['id'] . "&section=dev-ifgraphs&type=bits'>Bits</a> |
<a href='".$config['base_url']."/?page=device&id=" . $_GET['id'] . "&section=dev-ifgraphs&type=pkts'>Packets</a> |
<a href='".$config['base_url']."/?page=device&id=" . $_GET['id'] . "&section=dev-ifgraphs&type=nupkts'>NU Packets</a> |
<a href='".$config['base_url']."/?page=device&id=" . $_GET['id'] . "&section=dev-ifgraphs&type=errors'>Errors</a>
</div>");
$dographs = 1;
if(!$_GET['type']) { $_GET['type'] = "bits"; }
include("pages/device/ifs.inc.php");
?>