include('common_user_inc.htm');
if ($_SERVER[REQUEST_METHOD] == "POST")
{
$operationInProgress = true;
$status = new ReturnStatus();
$modeChanges = $_POST['modeChanges'];
foreach (explode(":", $modeChanges) as $theLib)
{
list($guid, $state) = explode(",", $theLib);
change_library_mode($user, $guid, $state == "Online");
}
print $status->out();
return;
}
$libs = get_logical_libraries($user, $sortCriteria);
?>
Change Partition Mode |
Select the mode for the Partitions:
Note: Taking a Partition offline may affect all current backup operations in that Partition.
|
include('progressWin_inc.htm');
?>