mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
echo("<table border=0 cellspacing=0 cellpadding=2 class=devicetable width=100%>");
 | 
						|
 | 
						|
echo("
 | 
						|
      <tr bgcolor='$list_colour_a'>
 | 
						|
        <th width='7'></th>
 | 
						|
        <th width='250'><span style='font-weight: bold;' class=interface>Customer</span></th>
 | 
						|
        <th width='150'>Device</th>
 | 
						|
        <th width='100'>Interface</th>
 | 
						|
        <th width='100'>Speed</th>
 | 
						|
        <th width='100'>Circuit</th>
 | 
						|
        <th>Notes</th>
 | 
						|
      </tr>
 | 
						|
     ");
 | 
						|
 | 
						|
$i = 1;
 | 
						|
 | 
						|
$pagetitle[] = "Customers";
 | 
						|
 | 
						|
if (!is_array($config['customers_descr'])) {
 | 
						|
    $config['customers_descr'] = array($config['customers_descr']);
 | 
						|
}
 | 
						|
$descr_type = "'". implode("', '", $config['customers_descr']) ."'";
 | 
						|
 | 
						|
foreach (dbFetchRows("SELECT * FROM `ports` WHERE `port_descr_type` IN (?) GROUP BY `port_descr_descr` ORDER BY `port_descr_descr`", array(array($descr_type))) as $customer)
 | 
						|
{
 | 
						|
  $i++;
 | 
						|
 | 
						|
  $customer_name = $customer['port_descr_descr'];
 | 
						|
 | 
						|
  if (!is_integer($i/2)) { $bg_colour = $list_colour_a; } else { $bg_colour = $list_colour_b; }
 | 
						|
 | 
						|
  foreach (dbFetchRows("SELECT * FROM `ports` WHERE `port_descr_type` IN (?) AND `port_descr_descr` = ?", array(array($descr_type),$customer['port_descr_descr'])) as $port)
 | 
						|
  {
 | 
						|
    $device = device_by_id_cache($port['device_id']);
 | 
						|
 | 
						|
    unset($class);
 | 
						|
 | 
						|
    $ifname = fixifname($device['ifDescr']);
 | 
						|
    $ifclass = ifclass($port['ifOperStatus'], $port['ifAdminStatus']);
 | 
						|
 | 
						|
    if ($device['os'] == "ios")
 | 
						|
    {
 | 
						|
      if ($port['ifTrunk']) { $vlan = "<span class=box-desc><span class=red>" . $port['ifTrunk'] . "</span></span>"; }
 | 
						|
      elseif ($port['ifVlan']) { $vlan = "<span class=box-desc><span class=blue>VLAN " . $port['ifVlan'] . "</span></span>"; }
 | 
						|
      else { $vlan = ""; }
 | 
						|
    }
 | 
						|
 | 
						|
    echo("
 | 
						|
           <tr bgcolor='$bg_colour'>
 | 
						|
             <td width='7'></td>
 | 
						|
             <td width='250'><span style='font-weight: bold;' class=interface>".$customer_name."</span></td>
 | 
						|
             <td width='150'>" . generate_device_link($device) . "</td>
 | 
						|
             <td width='100'>" . generate_port_link($port, makeshortif($port['ifDescr'])) . "</td>
 | 
						|
             <td width='100'>".$port['port_descr_speed']."</td>
 | 
						|
             <td width='100'>".$port['port_descr_circuit']."</td>
 | 
						|
             <td>".$port['port_descr_notes']."</td>
 | 
						|
           </tr>
 | 
						|
         ");
 | 
						|
 | 
						|
    unset($customer_name);
 | 
						|
  }
 | 
						|
 | 
						|
  echo("<tr bgcolor='$bg_colour'><td></td><td colspan=6>");
 | 
						|
 | 
						|
  $graph_array['type']   = "customer_bits";
 | 
						|
  $graph_array['height'] = "100";
 | 
						|
  $graph_array['width']  = "220";
 | 
						|
  $graph_array['to']     = $config['time']['now'];
 | 
						|
  $graph_array['id']     = $customer['port_descr_descr'];
 | 
						|
 | 
						|
  include("includes/print-graphrow.inc.php");
 | 
						|
 | 
						|
  echo("</tr>");
 | 
						|
}
 | 
						|
 | 
						|
echo("</table>");
 | 
						|
 | 
						|
?>
 |