X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/2a767add127bcb217dcc2ce2ca242f703b5022a0..e06899a60cc1bda43249f61aff28f99224b8013f:/sistema/www/sistemas/sistemas.php?ds=inline diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php index b033aa9..59c62ea 100644 --- a/sistema/www/sistemas/sistemas.php +++ b/sistema/www/sistemas/sistemas.php @@ -22,6 +22,7 @@ require_once 'MECON/HTML/Tabla.php'; require_once 'SAMURAI/Sistema.php'; + $aHrefPopup = ''; $aHref = ''; $aHrefModif = $aHref.'Modificar Sistema'; $aHrefElim = $aHref.'Eliminar Sistema'; @@ -30,7 +31,7 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { header('Location: ./../sel-sistema'); } - // }}} + // }}} $sistemas = SAMURAI_Sistema::getSistemas($DB); @@ -41,41 +42,29 @@ $TABLA2->setColAlign(1,'right'); $TABLA = new Tabla ('cellpadding=2'); - $row = array ('Id','Nombre','Descripcion','Fecha Inicio','Fecha Fin','Fecha Impl.','Contacto','Modif.','Elim.','Perm.'); + $row = array ('Id','Nombre','Modif.','Elim.','Perm.'); $TABLA->addRow($row,'cabecera'); foreach ($sistemas as $sistema) { + $Popup = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPopup); $Modif = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefModif); $Elim = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefElim); $Modif = ereg_replace('##ACCION##' , 'm' , $Modif); $Elim = ereg_replace('##ACCION##' , 'e' , $Elim); $Perm = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPerm); + $Popup = $Popup.$sistema->getNombre().''; - $fecha_inicio = $sistema->getFechaInicio(); - $fecha_fin = $sistema->getFechaFin(); - $fecha_implementacion = $sistema->getFechaImplementacion(); - $row = array ( $sistema->getId(), - $sistema->getNombre(), - $sistema->getDescripcion(), - $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--', - $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--', - $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--', - $sistema->getContacto(), + $Popup, $Modif, $Elim, $Perm, ); - $TABLA->addRow($row); } - - - //Agrego las cosas al cuerpo de la pagina - $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($TABLA2->toHtml(1)); $MARCO->addBody($TABLA); $MARCO->display();