include('user_inc.htm');
$columnMap = array("s_barcode" => 4, "s_location" => 3, "s_mediaType" => 5,
"s_cleanings" => 7);
if( $_SERVER[REQUEST_METHOD] == "POST" )
{
$slotData = split(":", $_POST['slotSelection']);
// convert to array of ints
$cleaningsData = array();
$operationInProgress = true;
$status = new ReturnStatus();
$command_status = export_cleaning_media($user,$slotData);
print $status->out();
return;
}
else
{
$cleaning_configured = get_num_cleaning_slots($user);
$numMboxSlots = get_num_mailbox_slots($user);
}
?>
Export Cleaning Media
Operations - Export Cleaning Media |
Export allows you to export one or more pieces of media from a cleaning slot to the I/E Station. |
if( !$cleaning_configured )
{
echo "";
echo "";
echo "No cleaning slots are configured, cannot export cleaning Media";
echo " |
";
echo "
";
}
else if( $numMboxSlots <= 0 )
{
include('noIESlotsConfigured.htm');
}
else
{
include('cleaningMediaExportBody.htm');
}
?>
include('progressWin_inc.htm');
?>