]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sistemas/sistemas-permisos.php
Funcionalidad terminada, salvo consultas. Solo falta ver bien si hay errores
[mecon/samurai.git] / sistema / www / sistemas / sistemas-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 // 
22
23 //REQUIRE_ONCE {{{
24     //MECON {{{
25     require_once 'MECON/HTML/Tabla.php';
26     // }}}
27     //SAMURAI {{{
28     require_once 'SAMURAI/Sistema.php';
29     require_once 'SAMURAI/Permiso.php';
30     // }}}
31 // }}}
32 //OBTENGO EL ID DEL SISTEMA {{{
33     //El id de sistema viene por get o por post, no hay otra posibilidad
34     $idSistema = 0;
35     if (isset($_GET['idSistema'])) {
36         $idSistema = $_GET['idSistema'];
37     }
38     elseif (isset($_POST['idSistema'])) {
39         $idSistema = $_POST['idSistema'];
40     }
41     $_SESSION['samurai']['id_sistema'] = $idSistema;
42 // }}}
43 //CREO LOS OBJETO NECESARIOS {{{
44     $SISTEMA   = new SAMURAI_Sistema ($DB, $idSistema);
45     $TABLASIST = new Tabla ('cellpadding=2');
46     $TABLAPERM = new Tabla ('cellpadding=2');
47     $SISTEMA->setResponsable($_SESSION['samurai']['login']);
48 // }}}
49 //AGREGO LA INFORMACION DEL SISTEMA {{{
50     $row = array ('Datos del sistema');
51     $TABLASIST->addRow($row, 'cabecera colspan=3');
52     $row = array ('Id', 'Nombre', 'Descripcion');
53     $TABLASIST->addRow($row, 'titulo');
54     $row = array ($SISTEMA->getId(), $SISTEMA->getNombre(), $SISTEMA->getDescripcion());
55     $TABLASIST->addRow($row, 'comun');
56 // }}}
57 //AGREGO LA INFORMACION DE LAS ASOCIACIONES {{{
58     $aHref      = '<a href="sistemas-permisos-abm?accion=##ACCION##&idPermiso=##PERMISO##&observacion=##OBS##&idSistema='.$idSistema.'">';
59     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar"></a>';
60     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar" ></a>';
61
62     $TABLA2 = new Tabla ('cellspacing=0');
63     $tt = ereg_replace ('##ACCION##' , 'n', $aHref);
64     $tt = ereg_replace ('##PERMISO##', 'p', $tt   );
65     $tt = ereg_replace ('##OBS##'    , 'o', $tt   );
66     $row = array ($tt.'<img src="/MECON/images/general_nuevo.gif" border="0">Asociar nuevo permiso al sistema</a>');
67     $TABLA2->addRow($row, 'align=right');
68
69     $row = array ('Permisos Asociados al Sistema');
70     $TABLAPERM->addRow($row, 'cabecera colspan=4');
71     $row = array ('Nombre', 'Observacion', 'Modif.', 'Elim.');
72     $TABLAPERM->addRow($row, 'titulo');
73     
74     $asocs = $SISTEMA->getAsociaciones();
75    
76     foreach ($asocs as $key => $asoc) {
77         $estilo = 'comun';
78         $permiso = new SAMURAI_Permiso($DB, $asoc['id']);
79         $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
80         $Elim  = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
81         $Modif = ereg_replace('##OBS##'    , $asoc['obs'], $Modif     );
82         $Elim  = ereg_replace('##OBS##'    , $asoc['obs'], $Elim      );
83         $Modif = ereg_replace('##ACCION##' , 'm'         , $Modif     );
84         $Elim  = ereg_replace('##ACCION##' , 'e'         , $Elim      );
85         $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim);
86         $TABLAPERM->addRow($row, $estilo);
87     }
88
89 // }}}
90 //OPCION VOLVER {{{
91     $TABLAVOLVER = new Tabla ('cellspacing=0');
92     $row = array ('<a href="sistemas" alt="Volver a la lista de Sistemas" ><img src="/MECON/images/general_volver4.gif" border="0">&nbsp;Volver a Sistemas</a>');
93     $TABLAVOLVER->addRow($row,'align=left');
94 // }}}
95 //DIBUJO LA PAGINA {{{
96     $MARCO = new Marco ('../../conf/confSecciones.php');
97     $MARCO->addBody($TABLAVOLVER);
98     $MARCO->addTitle('Asociar Permisos y Sistemas');
99     //AGREGO LA TABLA DEL SISTEMA
100     $MARCO->addBody($TABLASIST);
101     $MARCO->addBody('<BR>');
102     //AGREGO LA TABLA DE PERMISOS
103     $MARCO->addBody($TABLA2);
104     $MARCO->addBody($TABLAPERM);
105     $MARCO->display();
106 // }}}
107 //FIN
108
109 ?>