+
+ $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']);
+
+ $sistemas = $SAMURAI->getSistemas();
+
+ $TABLA2 = new Tabla ('cellspacing=0');
+ $row = array ($aHref.'<img src="/www/images/nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
+ $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');