X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/ab161c8e8c4038bb256c63963c54dbcf64338548..14b7965388416e66c0d012ac6f001f9c877b5ce8:/sistema/www/sistemas.php?ds=inline diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index 6c0e8c6..c6e5f7d 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -23,11 +23,12 @@ // $Date$ // $Rev$ // - require_once 'HTML/Tabla.php'; + require_once 'MECON/HTML/Tabla.php'; $aHref = ''; - $aHrefModif = $aHref.''; - $aHrefElim = $aHref.''; + $aHrefModif = $aHref.''; + $aHrefElim = $aHref.''; + $aHrefPerm = ''; $body = ''; @@ -36,18 +37,19 @@ $sistemas = $SAMURAI->getSistemas(); $TABLA2 = new Tabla ('cellspacing=0'); - $row = array ($aHref.'Ingresar Nuevo Sistema'); + $row = array ($aHref.'Ingresar Nuevo Sistema'); $TABLA2->addRow($row,'align=right'); $TABLA = new Tabla ('cellpadding=2'); - $row = array ('Id','Nombre','Descripcion','Fecha Inicio','Fecha Fin','Fecha Impl.','Contacto','Modif.','Elim.'); + $row = array ('Id','Nombre','Descripcion','Fecha Inicio','Fecha Fin','Fecha Impl.','Contacto','Modif.','Elim.','Perm.'); $TABLA->addRow($row,'cabecera'); foreach ($sistemas as $sistema) { - $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); + $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);; $fecha_inicio = $sistema->getFechaInicio(); $fecha_fin = $sistema->getFechaFin(); @@ -62,17 +64,17 @@ $sistema->getContacto(), $Modif, $Elim, + $Perm, ); $TABLA->addRow($row); } - //Agrego las cosas al cuerpo de la pagina $body.=$TABLA2->toHtml(1); $body.=$TABLA->toHtml().'
'; - - $MARCO = new Marco ('samurai'); + + $MARCO = new Marco ('../conf/confSecciones.php'); $MARCO->addBody($body); $MARCO->display(); ?>