X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/e780796e42f04429e069a478c1b68a80caa34260..a3e22d8601c813aab90df99431e63a0492bbe472:/src/www/sistemas.php diff --git a/src/www/sistemas.php b/src/www/sistemas.php index 11c77e8..bea082c 100644 --- a/src/www/sistemas.php +++ b/src/www/sistemas.php @@ -25,10 +25,38 @@ // require_once 'include/lib/samurai/Samurai.php'; require_once 'HTML/Tabla.php'; - + + $aHref = ''; + $aHrefModif = $aHref.''; + $aHrefElim = $aHref.''; + $body = ''; - $samurai = new Samurai($DB,$_SESSION['samurai']['id_sistema']); + + $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']); + + $sistemas = $SAMURAI->getSistemas(); + + $TABLA2 = new Tabla ('cellspacing=0'); + $row = array ($aHref.'Ingresar Nuevo Sistema'); + $TABLA2->agregarFila($row); + $TABLA2->align(0,0,'right'); + + $TABLA = new Tabla ('cellpadding=2'); + $row = array ('Id','Nombre','Descripcion','Fecha Inicio','Fecha Fin','Fecha Impl.','Contacto','Modif.','Elim.'); + $TABLA->agregarFilaCabecera($row); + + foreach ($sistemas as $sistema) { + $Modif = ereg_replace('NUEVO', 'm'.$sistema->getId(), $aHrefModif); + $Elim = ereg_replace('NUEVO', 'e'.$sistema->getId(), $aHrefElim); + $row = array ($sistema->getId(),$sistema->getNombre(),$sistema->getDescripcion(),$sistema->getFechaInicio(),$sistema->getFechaFin(),$sistema->getFechaImplementacion(),$sistema->getContacto(),$Modif,$Elim); + $TABLA->agregarFila($row); + } + $TABLA->setColAlign(2,'left'); + + //Agrego las cosas al cuerpo de la pagina + $body.=$TABLA2->toHtml(1); + $body.=$TABLA->toHtml().'
'; $MARCO = new Marco ('samurai'); $MARCO->addBody($body);