]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sistemas.php
6c0e8c65eea4a297737c256cfe91ad369e5ad56f
[mecon/samurai.git] / sistema / www / sistemas.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: mar may 27 15:16:38 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 // 
26     require_once 'HTML/Tabla.php';
27
28     $aHref      = '<a href="sistemas-abm?accion=##ACCION##&idSistema=##NUEVO##">';
29     $aHrefModif = $aHref.'<img src="/www/images/modificar.gif" border="0"></a>';
30     $aHrefElim  = $aHref.'<img src="/www/images/eliminar.gif"  border="0"></a>';
31
32     $body = '';
33
34     $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']);
35
36     $sistemas = $SAMURAI->getSistemas();
37
38     $TABLA2 = new Tabla ('cellspacing=0');
39     $row = array ($aHref.'<img src="/www/images/nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
40     $TABLA2->addRow($row,'align=right');
41     
42     $TABLA = new Tabla ('cellpadding=2');
43     $row = array ('Id','Nombre','Descripcion','Fecha&nbsp;Inicio','Fecha&nbsp;Fin','Fecha&nbsp;Impl.','Contacto','Modif.','Elim.');
44     $TABLA->addRow($row,'cabecera');
45
46     foreach ($sistemas as $sistema) {
47         $Modif = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefModif);
48         $Elim  = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefElim);
49         $Modif = ereg_replace('##ACCION##', 'm'              , $Modif);
50         $Elim  = ereg_replace('##ACCION##', 'e'              , $Elim);
51         
52         $fecha_inicio           = $sistema->getFechaInicio(); 
53         $fecha_fin              = $sistema->getFechaFin();
54         $fecha_implementacion   = $sistema->getFechaImplementacion();
55        
56         $row = array (  $sistema->getId(),
57                         $sistema->getNombre(),
58                         $sistema->getDescripcion(),
59                         $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--',
60                         $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--',
61                         $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--',
62                         $sistema->getContacto(),
63                         $Modif,
64                         $Elim,
65                 );
66
67         $TABLA->addRow($row);
68     }
69     
70
71     //Agrego las cosas al cuerpo de la pagina
72     $body.=$TABLA2->toHtml(1);
73     $body.=$TABLA->toHtml().'<BR>';
74     
75     $MARCO = new Marco ('samurai');
76     $MARCO->addBody($body);
77     $MARCO->display();
78 ?>