interfaceType == "Fibre" )
$numFibre++;
if( $drive->interfaceType == "SCSI" )
$numSCSI++;
if( $drive->interfaceType == "SAS" )
$numSAS++;
}
if( $numSAS )
$SasText = " View the settings on SAS drives.";
else
$SasText = "";
// Change the text at the top of the screen to match which lists are being showed.
if( $numSCSI > 0 && $numFibre > 0 ) // Both types
echo "";
else if ( $numSCSI > 0 ) // SCSI only
echo "";
else if ( $numFibre > 0 ) // Fibre only
echo "";
else
echo "";
$fibreNote = "The Actual Topology and Speed can take up to two minutes to be negotiated and returned from a fibre channel drive. The values will be unknown until negotiated.";
$sasNote = "SAS drive IDs are not user configurable.";
$note = "
Note:
";
// decide if we need to display a note about fibre or sas drives, or both
if ( $numFibre > 0 && $numSAS == 0)
$note .= $fibreNote;
else if ($numSAS > 0 && $numFibre == 0)
$note .= $sasNote;
else if ($numSAS > 0 && $numFibre > 0)
$note .= "$fibreNote $sasNote";
$note .= "
";
// If any notes, display them
if ( $numSAS > 0 && $numFibre > 0 )
echo "";
include('progressWin_inc.htm');
?>