Guest User

ninja4nagios

a guest
Apr 3rd, 2009
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.10 KB | None | 0 0
  1. <?php defined('SYSPATH') OR die('No direct access allowed.'); ?>
  2. <div class="widget movable collapsable removable closeconfirm" id="widget-network_health">
  3.     <div class="widget-header">
  4.         <strong><?php echo $title ?></strong>
  5.     </div>
  6.     <div class="widget-editbox">
  7.         <!--Edit the widget here-->
  8.     </div>
  9.     <div class="widget-content">
  10.         <!--This is widget content:<br /><br />-->
  11.  
  12.         <table cellpadding="0" cellspacing="0" id="netw_health">
  13.         <tr>
  14.             <td valign="bottom" id="host_health" align="center">
  15.                 <div class="netw_health_label"><?php echo $host_value ?> %</div>
  16.                 <div><?php echo html::image($host_image, array('height' => $host_value, 'width' => '100%')) ?></div>
  17.                 <div class="netw_health_label"><?php echo $host_label ?></div>
  18.             </td>
  19.             <td valign="bottom" id="service_health" align="center">
  20.                 <div class="netw_health_label"><?php echo $service_value ?> %</div>
  21.                 <div><?php echo html::image($service_image, array('height' => $service_value, 'width' => '100%')) ?></div>
  22.                 <div class="netw_health_label"><?php echo $service_label ?></div>
  23.             </td>
  24.         </tr>
  25.         </table>
  26. </div>
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment