]> git.llucax.com Git - mecon/samurai.git/blobdiff - src/www/sistemas.php
(no commit message)
[mecon/samurai.git] / src / www / sistemas.php
index 11c77e8c1b40f25ff53c1706fdb8c81a953e6ece..bea082c8bc75712e65f4abef681e269ee9c390d0 100644 (file)
 // 
     require_once 'include/lib/samurai/Samurai.php';
     require_once 'HTML/Tabla.php';
-    
+
+    $aHref      = '<a href="sistemas-abm?idSistema=NUEVO">';
+    $aHrefModif = $aHref.'<img src="/www/images/modificar.gif" border="0"></a>';
+    $aHrefElim  = $aHref.'<img src="/www/images/eliminar.gif"  border="0"></a>';
+
     $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.'<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&nbsp;Inicio','Fecha&nbsp;Fin','Fecha&nbsp;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().'<BR>';
     
     $MARCO = new Marco ('samurai');
     $MARCO->addBody($body);