2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
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 // +----------------------------------------------------------------------+
25 require_once 'MECON/HTML/Tabla.php';
28 require_once 'SAMURAI/Sistema.php';
29 require_once 'SAMURAI/Permiso.php';
32 //OBTENGO EL ID DEL SISTEMA {{{
33 //El id de sistema viene por get o por post, no hay otra posibilidad
35 if (isset($_GET['idSistema'])) {
36 $idSistema = $_GET['idSistema'];
38 elseif (isset($_POST['idSistema'])) {
39 $idSistema = $_POST['idSistema'];
41 $_SESSION['samurai']['id_sistema'] = $idSistema;
43 //CREO LOS OBJETO NECESARIOS {{{
44 $SISTEMA = new SAMURAI_Sistema ($DB, $idSistema);
45 $TABLASIST = new MECON_HTML_Tabla ('cellpadding=2');
46 $TABLAPERM = new MECON_HTML_Tabla ('cellpadding=2');
47 $SISTEMA->setResponsable($_SESSION['samurai']['login']);
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');
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>';
62 $TABLA2 = new MECON_HTML_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');
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');
74 $asocs = $SISTEMA->getAsociaciones();
76 foreach ($asocs as $key => $asoc) {
77 $obs = ereg_replace(' ' , '%20', $asoc['obs']); //Cambio los espacios por %20 para que funcione bien con el netscape
79 $permiso = new SAMURAI_Permiso($DB, $asoc['id']);
80 $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
81 $Elim = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
82 $Modif = ereg_replace('##OBS##' , $obs , $Modif );
83 $Elim = ereg_replace('##OBS##' , $obs , $Elim );
84 $Modif = ereg_replace('##ACCION##' , 'm' , $Modif );
85 $Elim = ereg_replace('##ACCION##' , 'e' , $Elim );
86 $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim);
87 $TABLAPERM->addRow($row, $estilo);
92 $TABLAVOLVER = new MECON_HTML_Tabla ('cellspacing=0');
93 $row = array ('<a href="sistemas" alt="Volver a la lista de Sistemas" ><img src="/MECON/images/general_volver4.gif" border="0"> Volver a Sistemas</a>');
94 $TABLAVOLVER->addRow($row,'align=left');
96 //DIBUJO LA PAGINA {{{
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);