mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
$link_array = array(
 | 
						|
               'page'   => 'device',
 | 
						|
               'device' => $device['device_id'],
 | 
						|
               'tab'    => 'routing',
 | 
						|
               'proto'  => 'vrf',
 | 
						|
              );
 | 
						|
 | 
						|
// echo(generate_link("Basic", $link_array,array('view'=>'basic')));
 | 
						|
if (!isset($vars['view'])) {
 | 
						|
    $vars['view'] = 'basic';
 | 
						|
}
 | 
						|
 | 
						|
print_optionbar_start();
 | 
						|
 | 
						|
echo "<span style='font-weight: bold;'>VRFs</span> » ";
 | 
						|
 | 
						|
$menu_options = array('basic' => 'Basic',
 | 
						|
// 'detail' => 'Detail',
 | 
						|
                );
 | 
						|
 | 
						|
if (!$_GET['opta']) {
 | 
						|
    $_GET['opta'] = 'basic';
 | 
						|
}
 | 
						|
 | 
						|
$sep = '';
 | 
						|
foreach ($menu_options as $option => $text) {
 | 
						|
    if ($vars['view'] == $option) {
 | 
						|
        echo "<span class='pagemenu-selected'>";
 | 
						|
    }
 | 
						|
 | 
						|
    echo generate_link($text, $link_array, array('view' => $option));
 | 
						|
    if ($vars['view'] == $option) {
 | 
						|
        echo '</span>';
 | 
						|
    }
 | 
						|
 | 
						|
    echo ' | ';
 | 
						|
}
 | 
						|
 | 
						|
unset($sep);
 | 
						|
 | 
						|
echo ' Graphs: ';
 | 
						|
 | 
						|
$graph_types = array(
 | 
						|
                'bits'      => 'Bits',
 | 
						|
                'upkts'     => 'Unicast Packets',
 | 
						|
                'nupkts'    => 'Non-Unicast Packets',
 | 
						|
                'errors'    => 'Errors',
 | 
						|
                'etherlike' => 'Etherlike',
 | 
						|
               );
 | 
						|
 | 
						|
foreach ($graph_types as $type => $descr) {
 | 
						|
    echo "$type_sep";
 | 
						|
    if ($vars['graph'] == $type) {
 | 
						|
        echo "<span class='pagemenu-selected'>";
 | 
						|
    }
 | 
						|
 | 
						|
    echo generate_link($descr, $link_array, array('view' => 'graphs', 'graph' => $type));
 | 
						|
    if ($vars['graph'] == $type) {
 | 
						|
        echo '</span>';
 | 
						|
    }
 | 
						|
 | 
						|
    $type_sep = ' | ';
 | 
						|
}
 | 
						|
 | 
						|
print_optionbar_end();
 | 
						|
 | 
						|
echo "<div style='margin: 5px;'><table border=0 cellspacing=0 cellpadding=5 width=100%>";
 | 
						|
$i = '0';
 | 
						|
foreach (dbFetchRows('SELECT * FROM `vrfs` WHERE `device_id` = ? ORDER BY `vrf_name`', array($device['device_id'])) as $vrf) {
 | 
						|
    include 'includes/print-vrf.inc.php';
 | 
						|
 | 
						|
    $i++;
 | 
						|
}
 | 
						|
 | 
						|
echo '</table></div>';
 |