]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/permisos/permisos.php
Teminados los abms de Sistemas y Permisos con los errores ubicados segun corresponden.
[mecon/samurai.git] / sistema / www / permisos / permisos.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
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     
27     require_once 'MECON/HTML/Tabla.php';
28
29 //LINKS A PERMISOS-ABM {{{
30     $aHref      = '<a href="permisos-abm?accion=##ACCION##&idPermiso=##NUEVO##">';
31     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Permiso"></a>';
32     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Permiso" ></a>';
33 // }}}
34 //CREO LOS OBJETOS NECESARIOS {{{
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     $TABLA2 = new Tabla ('cellspacing=0');
42     $TABLA  = new Tabla ('cellpadding=2');
43     
44 // }}}
45 //OBTENGO LA INFORMACION DE LA BASE {{{
46     $permisos = $SAMURAI->getPermisos();
47 // }}}
48 //AGREGO LOS DATOS A LAS TABLAS {{{
49     $row   = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Permiso</a>');
50     $TABLA2->addRow($row,'align=right');    
51     $row   = array ('Id','Descripcion','Modif.','Elim.');
52     $TABLA->addRow($row,'cabecera');
53     foreach ($permisos as $permiso) {
54         $Modif = ereg_replace('##NUEVO##'  , $permiso->getId(), $aHrefModif);
55         $Elim  = ereg_replace('##NUEVO##'  , $permiso->getId(), $aHrefElim );
56         $Modif = ereg_replace('##ACCION##' , 'm'              , $Modif     );
57         $Elim  = ereg_replace('##ACCION##' , 'e'              , $Elim      );
58         $row = array (  $permiso->getId(),
59                         $permiso->getDescripcion(),
60                         $Modif,
61                         $Elim,
62                     );
63         $TABLA->addRow($row);
64     }
65 // }}}
66 //DIBUJO LA PAGINA {{{
67     $MARCO = new Marco ('../../conf/confSecciones.php');
68     $MARCO->addBody($TABLA2->toHtml(1));
69     $MARCO->addBody($TABLA);
70     $MARCO->display();
71 // }}}
72 //FIN
73 ?>