X-Git-Url: https://git.llucax.com/mecon/yatta.git/blobdiff_plain/be82111e27a9d9b492bdde542a283624c752b3fc..da57f3c2acc48c5d0f0ff068599eef7ddf488388:/sistema/www/procesos_popup.php diff --git a/sistema/www/procesos_popup.php b/sistema/www/procesos_popup.php index 401843e..5e44298 100644 --- a/sistema/www/procesos_popup.php +++ b/sistema/www/procesos_popup.php @@ -26,8 +26,7 @@ $Id$ //Require Once {{{ //HTML {{{ -require_once 'HTML/Page.php'; -require_once 'HTML/Table.php'; +require_once 'MECON/HTML/Tabla.php'; require_once 'MECON/HTML/Link.php'; require_once 'MECON/HTML/Image.php'; //}}} @@ -37,15 +36,7 @@ require_once 'YATTA/Controlador.php'; //}}} //Creo los objetos necesarios {{{ -$PAGE =& new HTML_Page(array ('doctype' => 'HTML 4.01 Transitional', - 'charset' => 'iso-8859-1', - 'lineend' => 'unix', - 'language' => 'es', - 'cache' => 'false', - 'simple' => 'true')); -$PAGE->addStyleSheet('/sistemas/yatta/css/yatta.css'); -$PAGE->addStyleSheet('/MECON/css/marco.css'); -$TABLA=& new HTML_Table('width="370"'); +$TABLA=& new MECON_HTML_Tabla('width="400"'); $PROCESO =& new YATTA_Controlador; //}}} @@ -54,39 +45,36 @@ $id = (@$_REQUEST['id']) ? $_REQUEST['id'] : null; //}}} //Obtengo la informacion del proceso {{{ -$PROCESO = $PROCESO->obtenerProcesoUsuario($DB, $_SESSION['usuario'], $id); +$PROCESO = $PROCESO->obtenerProcesosUsuario($DB, $_SESSION['usuario'], $id); //}}} //Creo las imagenes {{{ $imagen =& new MECON_HTML_Image('/sistemas/yatta/images/estado_'. $PROCESO->status.'.gif'); $cerrar = new MECON_HTML_Image('/MECON/images/general_cerrar.gif'); -$detener =& new MECON_HTML_Link('proceso_detener', +$detener =& new MECON_HTML_Link('procesos_detener', new MECON_HTML_Image ('/MECON/images/general_detener.gif'), array ('id' => $id)); //}}} //DIBUJO LA PAGINA {{{ -$PAGE->addBodyContent(''. $imagen->toHtml().' '. $PROCESO->icono - .'

'); +$TABLA->addRow(array ($imagen->toHtml().' '. $PROCESO->icono), 'titulo colspan=2'); +$TABLA->addRow(array('Id', $id)); +$TABLA->addRow(array('Fecha', $PROCESO->fecha)); +$TABLA->addRow(array('Sistema', $PROCESO->nombre_sistema)); +$TABLA->addRow(array('Descripcion', $PROCESO->descripcion)); +$TABLA->addRow(array('Owner', $PROCESO->owner)); +$TABLA->addRow(array('Destinos', @implode(', ', $PROCESO->destinos))); +$TABLA->addRow(array('Nota', $PROCESO->nota)); -$TABLA->addRow(array( - 'Id: '. $id .'
'. - 'Fecha: '. $PROCESO->fecha .'
'. - 'Sistema: '. $PROCESO->nombre_sistema .'
'. - 'Descripcion: '. $PROCESO->descripcion .'
'. - 'Owner: '. $PROCESO->owner .'
'. - 'Destinos: '. implode(', ', $PROCESO->destinos) .'
'. - 'Nota: '. $PROCESO->nota .'
' - )); -$PAGE->addBodyContent($TABLA->toHtml()); -$PAGE->addBodyContent('
'); +$TABLA->addLink('volver', new MECON_HTML_Link('procesos')); + +$MARCO->addBody($TABLA); +$MARCO->addBody('
'); if ($PROCESO->status == 0 || $PROCESO->status == 1) { - $PAGE->addBodyContent($detener->toHtml()); + $MARCO->addBody($detener->toHtml().' '); } -$PAGE->addBodyContent(''.$cerrar->toHtml().''); -$PAGE->setTitle('Datos del Proceso'); -$PAGE->display(); +$MARCO->addStyleSheet('css/yatta.css'); +$MARCO->display(); // }}} ?>