]> git.llucax.com Git - mecon/samurai.git/blobdiff - src/www/sistemas.php
(no commit message)
[mecon/samurai.git] / src / www / sistemas.php
index 520d0b3a8453b91fb82acecf92165044d662ea67..11c77e8c1b40f25ff53c1706fdb8c81a953e6ece 100644 (file)
@@ -1,52 +1,36 @@
 <?php
 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
-// +--------------------------------------------------------------------+
-// |                           SAMURAI                                  |
-// +--------------------------------------------------------------------+
-// |   Sistema de Administracion y Matenimiento de Usuarios Relativo A  |
-// |                             Intranet                               |
-// |                      Ministerio de Economía                        |
-// +--------------------------------------------------------------------+
-// | Creado: fri mar 21 ART 2003                                        |
-// | Autor:  Martin Marrese <mmarre@mecon.gov.ar>                       |
-// +--------------------------------------------------------------------+
+// +----------------------------------------------------------------------+
+// | PHP Version 4                                                        |
+// +----------------------------------------------------------------------+
+// | Copyright (c) 1997-2003 The PHP Group                                |
+// +----------------------------------------------------------------------+
+// | This source file is subject to version 2.02 of the PHP license,      |
+// | that is bundled with this package in the file LICENSE, and is        |
+// | available at through the world-wide-web at                           |
+// | http://www.php.net/license/2_02.txt.                                 |
+// | If you did not receive a copy of the PHP license and are unable to   |
+// | obtain it through the world-wide-web, please send a note to          |
+// | license@php.net so we can mail you a copy immediately.               |
+// +----------------------------------------------------------------------+
+// | Created: mar may 27 15:16:38 ART 2003
+// | Author:  Martin Marrese <mmarre@mecon.gov.ar>
+// +----------------------------------------------------------------------+
 //
 // $Id$
-//
+// $Author$
 // $URL$
-// $Rev$
 // $Date$
-// $Author$
-
-require_once 'HTML/Form.php';
-require_once 'HTML/Tabla.php';
-
-// Armo el FORM {{{
-$FORM = new HTML_Form('sistemas_abm.php', 'post', 'sistemas');
-$FORM->start();
-    //Armo la tabla {{{
-        $TABLE_externa = new Tabla('width="760" align="center" bgcolor="#FFFFFF"');        
-            //Cargo las filas {{{            
-                // Cargo el link a sistemas_abm.php   
-                $row_vacio = array ('0' => '');
-                
-                // Agrego una linea en blanco, que mas lindo esteticamente
-                $TABLE_externa->agregarFila($row_vacio);
-                
-                $row = array ($sistema_remoto->htmlLinkAbm('link_abm'));
-                $TABLE_externa->agregarFila($row);                
-                $TABLE_externa->align(1,0,'right');
-                
-                // Tiro la tabla interna en la externa
-                $row = array ($sistema_remoto->htmlTablaCompleta());
-                $TABLE_externa->agregarFila($row);
-              
-                // Tengo que agregar una fila mas para dejar un espacio en blanco
-                $TABLE_externa->agregarFila($row_vacio);
-
-            // }}} Fin carga de filas
-        $TABLE_externa->display();
-    // }}} Fin de la tabla
-    $FORM->end();
-    // }}} Fin del FORM 
+// $Rev$
+// 
+    require_once 'include/lib/samurai/Samurai.php';
+    require_once 'HTML/Tabla.php';
+    
+    $body = '';
+    $samurai = new Samurai($DB,$_SESSION['samurai']['id_sistema']);
+    
+    
+    $MARCO = new Marco ('samurai');
+    $MARCO->addBody($body);
+    $MARCO->display();
 ?>