mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	git-svn-id: http://www.observium.org/svn/observer/trunk@104 61d68cd4-352d-0410-923a-c4978735b2b8
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| $sql = "SELECT * FROM `temperature` WHERE temp_host = '" . $_GET[id] . "' ORDER BY temp_descr";
 | |
| $query = mysql_query($sql);
 | |
| 
 | |
| echo("<table cellspacing=0 cellpadding=5 width=100%>");
 | |
| 
 | |
| echo("<tr class=tablehead>
 | |
|         <th width=280>Sensor</th>
 | |
|         <th width=100>Current</th>
 | |
|         <th width=100>Alert</th>
 | |
|         <th>Notes</th>
 | |
|       </tr>");
 | |
| 
 | |
| $row = 1;
 | |
| 
 | |
| while($temp = mysql_fetch_array($query)) {
 | |
| 
 | |
|   if(is_integer($row/2)) { $row_colour = $list_colour_a; } else { $row_colour = $list_colour_b; }
 | |
| 
 | |
|   echo("<tr class=list-large style=\"background-color: $row_colour; padding: 5px;\">
 | |
|           <td width=200>" . $temp['temp_descr'] . "</td>
 | |
|           <td>" . print_temperature($temp['temp_current'], $temp['temp_limit']) . "</td>
 | |
|           <td>" . $temp['temp_limit'] . "</td>
 | |
|           <td>" . $temp['temp_notes'] . "</td>
 | |
|         </tr>\n");
 | |
|   echo("<tr  bgcolor=$row_colour><td colspan='4'>");
 | |
| 
 | |
|   $graph_type = "temp";
 | |
| 
 | |
| // start temperature graphs
 | |
| 
 | |
|   $daily_temp   = "graph.php?id=" . $temp['temp_id'] . "&type=$graph_type&from=$day&to=$now&width=211&height=100";
 | |
|   $daily_url       = "graph.php?id=" . $temp['temp_id'] . "&type=$graph_type&from=$day&to=$now&width=400&height=150";
 | |
| 
 | |
|   $weekly_temp  = "graph.php?id=" . $temp['temp_id'] . "&type=$graph_type&from=$week&to=$now&width=211&height=100";
 | |
|   $weekly_url      = "graph.php?id=" . $temp['temp_id'] . "&type=$graph_type&from=$week&to=$now&width=400&height=150";
 | |
| 
 | |
|   $monthly_temp = "graph.php?id=" . $temp['temp_id'] . "&type=$graph_type&from=$month&to=$now&width=211&height=100";
 | |
|   $monthly_url     = "graph.php?id=" . $temp['temp_id'] . "&type=$graph_type&from=$month&to=$now&width=400&height=150";
 | |
| 
 | |
|   $yearly_temp  = "graph.php?id=" . $temp['temp_id'] . "&type=$graph_type&from=$year&to=$now&width=211&height=100";
 | |
|   $yearly_url  = "graph.php?id=" . $temp['temp_id'] . "&type=$graph_type&from=$year&to=$now&width=400&height=150";
 | |
| 
 | |
|   echo("<a onmouseover=\"return overlib('<img src=\'$daily_url\'>', LEFT);\" onmouseout=\"return nd();\">
 | |
|         <img src='$daily_temp' border=0></a> ");
 | |
|   echo("<a onmouseover=\"return overlib('<img src=\'$weekly_url\'>', LEFT);\" onmouseout=\"return nd();\">
 | |
|         <img src='$weekly_temp' border=0></a> ");
 | |
|   echo("<a onmouseover=\"return overlib('<img src=\'$monthly_url\'>', LEFT);\" onmouseout=\"return nd();\">
 | |
|         <img src='$monthly_temp' border=0></a> ");
 | |
|   echo("<a onmouseover=\"return overlib('<img src=\'$yearly_url\'>', LEFT);\" onmouseout=\"return nd();\">
 | |
|         <img src='$yearly_temp' border=0></a>");
 | |
| 
 | |
| 
 | |
|   echo("</td></tr>");
 | |
| 
 | |
| 
 | |
|   $row++;
 | |
| 
 | |
| }
 | |
| 
 | |
| echo("</table>");
 | |
| 
 | |
| 
 | |
| ?>
 | |
| 
 |