include_once('user_inc.htm');
if ($_SERVER[REQUEST_METHOD] == "POST")
{
$libraryGUID = $_POST['libraryGUID'];
$mediaTypeCode = $_POST['mediaTypeCode'];
$sourceGUID = $_POST['sourceGUID'];
$destGUID = $_POST['destGUID'];
// Required to support the operation in progress dialog.
$operationInProgress = true;
$status = new ReturnStatus();
move_media($user,$libraryGUID,$sourceGUID,$destGUID);
print $status->out();
return;
}
// Get the number of logical libraies so we know if we need to bring up the partition Slect page or not.
$libs = get_logical_libraries_brief($user);
$lib_count = count($libs);
?>
Move Media
Move Media - LibraryName
Select the source media and then the destination.
If the partition is online, it will be taken offline before the operation is performed and brought back online after the operation has been completed.