]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sistemas/sistemas.php
- Terminados el Abm de Sistemas y el Abm de Permisos.
[mecon/samurai.git] / sistema / www / sistemas / 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 'MECON/HTML/Tabla.php';
27
28     $aHref      = '<a href="sistemas-abm?accion=##ACCION##&idSistema=##NUEVO##">';
29     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Sistema"></a>';
30     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Sistema" ></a>';
31     $aHrefPerm = '<a href="sistemas-permisos?idSistema=##SISTEMA##"><img src="/MECON/images/general_ir4" border="0" alt="Definir Permisos"></a>';
32
33     $body = '';
34
35     if (isset($_SESSION['samurai']['id_sistema'])) {
36         $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']);
37     }
38     else {
39         $SAMURAI = new Samurai($DB);
40     }
41
42     $sistemas = $SAMURAI->getSistemas();
43
44     $TABLA2 = new Tabla ('cellspacing=0');
45     $row = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Sistema</a>');
46     $TABLA2->addRow($row,'align=right');
47     
48     $TABLA = new Tabla ('cellpadding=2');
49     $row = array ('Id','Nombre','Descripcion','Fecha&nbsp;Inicio','Fecha&nbsp;Fin','Fecha&nbsp;Impl.','Contacto','Modif.','Elim.','Perm.');
50     $TABLA->addRow($row,'cabecera');
51
52     foreach ($sistemas as $sistema) {
53         $Modif = ereg_replace('##NUEVO##'  , $sistema->getId(), $aHrefModif);
54         $Elim  = ereg_replace('##NUEVO##'  , $sistema->getId(), $aHrefElim);
55         $Modif = ereg_replace('##ACCION##' , 'm'              , $Modif);
56         $Elim  = ereg_replace('##ACCION##' , 'e'              , $Elim);
57         $Perm  = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPerm);
58         
59         $fecha_inicio           = $sistema->getFechaInicio(); 
60         $fecha_fin              = $sistema->getFechaFin();
61         $fecha_implementacion   = $sistema->getFechaImplementacion();
62        
63         $row = array (  $sistema->getId(),
64                         $sistema->getNombre(),
65                         $sistema->getDescripcion(),
66                         $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--',
67                         $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--',
68                         $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--',
69                         $sistema->getContacto(),
70                         $Modif,
71                         $Elim,
72                         $Perm,
73                 );
74
75         $TABLA->addRow($row);
76     }
77     
78     //Agrego las cosas al cuerpo de la pagina
79
80     $MARCO = new Marco ('../../conf/confSecciones.php');
81     $MARCO->addBody($TABLA2->toHtml(1));
82     $MARCO->addBody($TABLA);
83     $MARCO->display();
84 ?>