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