]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sistemas/sistemas-permisos.php
Cambios despues de las modificaciones de la estructura de directorios
[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: sistemas-permisos.php 21 2003-06-25 22:26:30Z mmarre e
21 // 
22     require_once 'MECON/HTML/QuickForm.php';
23     require_once 'MECON/HTML/Tabla.php';
24     require_once 'SAMURAI/Sistema.php';
25     require_once 'SAMURAI/Permiso.php';
26
27 //OBTENGO EL ID DEL SISTEMA {{
28     //El id de sistema viene por get o por post, no hay otra posibilidad
29     $idSistema = 0;
30     if (isset($_GET['idSistema'])) {
31         $idSistema = $_GET['idSistema'];
32     }
33     elseif (isset($_POST['idSistema'])) {
34         $idSistema = $_POST['idSistema'];
35     }
36 // }}}
37 //CREO LOS OBJETO NECESARIOS {{{
38     $FORM      = new MECON_HTML_QuickForm ('sistemas_permisos','post','sistemas-permisos');
39     $SISTEMA   = new SAMURAI_Sistema ($DB, $idSistema);
40     $TABLASIST = new Tabla ('cellpadding=2');
41     $TABLAPERM = new Tabla ('cellpadding=2');
42 // }}}
43     $SISTEMA->setResponsable($_SESSION['samurai']['login']);
44 //AGREGO LA INFORMACION DEL SISTEMA {{{
45     $row = array ('Id', 'Nombre', 'Descripcion');
46     $TABLASIST->addRow($row, 'cabecera');
47     $row = array ($SISTEMA->getId(), $SISTEMA->getNombre(), $SISTEMA->getDescripcion());
48     $TABLASIST->addRow($row, 'comun');
49 // }}}
50 //AGREGO LOS ELEMENTOS DEL FORM {{{
51     //Obtengo la lista de permisos
52     $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
53     //Agrego elementos
54     $FORM->addElement ('header', 'cabecera'   , 'Agregar una asociacion');
55     $FORM->addElement ('hidden', 'idSistema'  , $idSistema);
56     $FORM->addElement ('select', 'permisos'   , 'Permisos'   , $PERMISOS, array('size' => '1'));
57     $FORM->addElement ('hidden', 'permant'); //Permiso anterior
58     $FORM->addElement ('hidden', 'obsant');  //Obseracion anterior
59     $FORM->addElement ('text'  , 'observacion', 'Observacion', array('size' => '30'));
60     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
61     $FORM->addGroup($group,'botones', '', ',&nbsp;');
62 // }}}
63 //VALIDO EL FORMULARIO {{{
64     if ($FORM->validate()) {
65         $idPermiso   =& $FORM->getElement  ('permisos'   );
66         $idPerm_ant  =& $FORM->getElement  ('permant'    );
67         $observacion =& $FORM->getElement  ('observacion');
68         $obs_ant     =& $FORM->getElement  ('obsant'    );
69         $group       =& $FORM->getElement  ('botones'    );
70         $group       =& $group->getElements('aceptar'    );
71         $aceptar     =& $group[0];
72
73         $tmp = $idPermiso->getSelected();
74         $tmp = $tmp['0'];
75         if ($aceptar->getValue() == 'Grabar') {
76             $error = $SISTEMA->guardarAsociacion($tmp, $observacion->getValue());
77         }
78         elseif ($aceptar->getValue() == 'Modificar') {
79             $error = $SISTEMA->modificarAsociacion($tmp, $idPerm_ant->getValue(), $observacion->getValue(), $obs_ant->getValue());
80         }
81         elseif ($aceptar->getValue() == 'Eliminar') {
82             $error = $SISTEMA->eliminarAsociacion($tmp, $observacion->getValue());
83         }
84
85         if ($error) {
86             $TABLA = new Tabla ('cellspacing=0');
87             $row = array ('<font color="red"><b>La asociacion ya existe, modifique alguno de sus datos</b></font>');
88             $TABLA->addRow($row,'align=left');
89         }
90         else {
91             $idPermiso->setSelected(null);
92             $observacion->setValue(null);
93             $aceptar->setValue('Grabar');
94         }
95     }
96 // }}}
97 //VERIFICO COMO DEBO LLAMAR AL BOTON SUBMIT {{{
98     if (isset($_GET['accion'])) { 
99         $group   =& $FORM->getElement  ('botones');
100         $group   =& $group->getElements('aceptar');
101         $aceptar =& $group[0];
102         
103         if ($_GET['accion'] == 'm') {
104             $aceptar->setValue('Modificar');
105         }
106         elseif ($_GET['accion'] == 'e') {
107             $aceptar->setValue('Eliminar');
108             $FORM->freeze();
109         }
110     } 
111 // }}}
112 //CAPTURO SI HAY ACCION -> MODIFICAR O ELIMINAR -> MUESTRO LOS DATOS EN EL FORM {{{
113     if (isset($_GET['accion'])) {
114         $idPermiso   =& $FORM->getElement ('permisos'   );
115         $idPerm_ant  =& $FORM->getElement ('permant'    );
116         $observacion =& $FORM->getElement ('observacion');
117         $obs_ant     =& $FORM->getElement ('obsant'     );  
118         $idPermiso->setSelected($_GET['idPermiso']);
119         $idPerm_ant->setValue($_GET['idPermiso']);
120         $observacion->setValue($_GET['observacion']);
121         $obs_ant->setValue($_GET['observacion']);    
122     }
123 // }}}
124 //AGREGO LA INFORMACION DE LAS ASOCIACIONES {{{
125     $aHref      = '<a href="sistemas-permisos?accion=##ACCION##&idPermiso=##PERMISO##&observacion=##OBS##&idSistema='.$idSistema.'">';
126     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar"></a>';
127     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar" ></a>';
128     $row = array ('Nombre', 'Observacion', 'Modif.', 'Elim.');
129     $TABLAPERM->addRow($row, 'cabecera');
130     
131     $asocs = $SISTEMA->getAsociaciones();
132  
133     $idPerm_ant  =& $FORM->getElement ('permant');
134     $obs_ant     =& $FORM->getElement ('obsant' );  
135    
136     foreach ($asocs as $key => $asoc) {
137         $estilo = 'comun';
138         $permiso = new SAMURAI_Permiso($DB, $asoc['id']);
139         $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
140         $Elim  = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
141         $Modif = ereg_replace('##OBS##'    , $asoc['obs'], $Modif     );
142         $Elim  = ereg_replace('##OBS##'    , $asoc['obs'], $Elim      );
143         $Modif = ereg_replace('##ACCION##' , 'm'         , $Modif     );
144         $Elim  = ereg_replace('##ACCION##' , 'e'         , $Elim      );
145         
146         if ($permiso->getId() == $idPerm_ant->getValue() && $asoc['obs'] == $obs_ant->getValue()) {
147             $estilo = 'titulo';
148         }
149         
150         $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim);
151         $TABLAPERM->addRow($row, $estilo);
152     }
153
154 // }}}
155 //DIBUJO LA PAGINA {{{
156     $MARCO = new Marco ('../../conf/confSecciones.php');
157     $MARCO->addTitle('Asociar Permisos y Sistemas');
158     //AGREGO LA TABLA DEL SISTEMA
159     $MARCO->addBody($TABLASIST);
160     $MARCO->addBody('<BR>');
161     //AGREGO EL ERROR
162     if (isset($TABLA)) {
163         $MARCO->addBody($TABLA);
164     }
165     //AGREGO LA TABLA DEL FORM
166     $MARCO->addBody($FORM);
167     $MARCO->addBody('<BR>');
168     //AGREGO LA TABLA DE PERMISOS
169     $MARCO->addBody($TABLAPERM);
170     $MARCO->display();
171 // }}}
172 //FIN
173
174 ?>