diff options
author | adv <adv@uma.es> | 2019-12-08 23:49:22 +0100 |
---|---|---|
committer | adv <adv@uma.es> | 2019-12-09 20:28:15 +0100 |
commit | 3cba7cfc3c4260719292f4db6d8f74fc44977036 (patch) | |
tree | a4bd1500a167c16ee70508210c882f5fd352a38a | |
parent | bee527d3f0a712980bff753b38a6cec0b415539c (diff) |
#937 #906 formRemotePartitionCloning: show "partition configuration table"
Remote Cloning Wizard shows "partition configuration table" before the form.
The table shows the content of the images in the cache
Code from the other Wizards is reused.
-rw-r--r-- | admin/WebConsole/asistentes/AsistenteCloneRemotePartition.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/admin/WebConsole/asistentes/AsistenteCloneRemotePartition.php b/admin/WebConsole/asistentes/AsistenteCloneRemotePartition.php index cf6587cc..32e051ac 100644 --- a/admin/WebConsole/asistentes/AsistenteCloneRemotePartition.php +++ b/admin/WebConsole/asistentes/AsistenteCloneRemotePartition.php @@ -19,6 +19,13 @@ include_once("../includes/CreaComando.php"); include_once("../includes/HTMLSELECT.php"); include_once("../idiomas/php/".$idioma."/comandos/ejecutarscripts_".$idioma.".php"); include_once("../idiomas/php/".$idioma."/comandos/opcionesacciones_".$idioma.".php"); + +include_once("../includes/HTMLCTESELECT.php"); +include_once("../includes/TomaDato.php"); +include_once("../includes/ConfiguracionesParticiones.php"); +include_once("../includes/RecopilaIpesMacs.php"); +include_once("./includes/asistentes/AyudanteFormularios.php"); + //________________________________________________________________________________________________________ include_once("./includes/capturaacciones.php"); //________________________________________________________________________________________________________ @@ -74,6 +81,10 @@ switch($ambito){ echo '<p align=center><span class=cabeceras>'.$TbMsg["WCRP31"].' </span><br>'; echo '<IMG src="'.$urlimg.'"> <span align=center class=subcabeceras> <U>'.$TbMsg[6].': '.$textambito.','.$nombreambito.'</U></span> </span></p>'; + + $sws=$fk_sysFi | $fk_nombreSO | $fk_tamano | $fk_imagen | $fk_perfil | $fk_cache; + pintaConfiguraciones($cmd,$idambito,$ambito,9,$sws,false); + ?> |