/*************************************************
* Draw the Library out of the Main Components.
*************************************************/
$end = count( $hChass ) - 1; // Array is 0 Based count is 1 based
$i = 0; // Cant use $theCount becasue it from a Positive to a Negative number
foreach( $hChass as $theCount => $chassis )
{
switch( $chassis->model )
{
case 'ExpansionModule9U':
$image = 'images/9U-EM.gif';
$id = '';
$newHeight = $newWidth * .89; // Calc the new Height
break;
case 'ExpansionModule5U':
$image = 'images/5U-EM.gif';
$id = '';
$newHeight = $newWidth * .49; // Calc the new Height
break;
case 'ControlModule5U':
$image = LIB_CM_IMAGE;
$id = 'theCM';
$newHeight = $newWidth * .49; // Calc the new Height
break;
}
echo "
";
}
?>
Select an area of the library below, a menu item, or a subsystem status button.