]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/perfiles/perfiles-abm.php
c24bdbb395d2792d264e8cd5e97e3d302e623b6e
[mecon/samurai.git] / sistema / www / perfiles / perfiles-abm.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: lun jul  7 13:30:05 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // 
22 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
23 $SAMURAI_PERM->chequear(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL);
24 //}}}
25
26 // REQUIRE_ONCE {{{
27     require_once 'MECON/HTML/QuickForm.php';
28     require_once 'MECON/HTML/Tabla.php';
29     require_once 'MECON/HTML/Error.php';
30     require_once 'SAMURAI/Perfil.php';
31     require_once 'SAMURAI/Permiso.php';
32     require_once 'SAMURAI/Sistema.php';
33     require_once 'MECON/HTML/Image.php';
34 // }}}
35 //CREO LOS OBJETO NECESARIOS {{{
36     if (@$_GET['id_perfil']) {
37         $id_perfil = $_GET['id_perfil'];
38     }
39     elseif (@$_POST['id_perfil']) {
40         $id_perfil = $_POST['id_perfil'];
41     }
42     else {
43         $id_perfil = null;
44     }
45     $FORM = new MECON_HTML_QuickForm ('perfiles_abm','post','perfiles-abm');
46     $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
47     $PERFIL = new SAMURAI_Perfil ($DB, $id_perfil);
48
49     if ($PERFIL->getResponsable()) {
50         $responsable = $PERFIL->getResponsable();
51     }
52     else {
53         $responsable = $_SESSION['samurai']['login'];
54     }
55     
56     if (!@$_GET['id_perfil']) {
57         if (@$_GET['desc_perfil']) {
58             $PERFIL->setDescripcion(@$_GET['desc_perfil']);
59         }
60         else {
61             $PERFIL->setDescripcion(@$_POST['desc_ant']);
62         }
63     }
64     $descripcion = $PERFIL->getDescripcion();
65 // }}}
66 //OBTENGO LOS PERMISOS DEL SISTEMA {{{
67     $ASOCIACIONES = $SISTEMA->getAsociaciones();
68     $PERMISOS = array ();
69     foreach ($ASOCIACIONES as $as) {
70         $clave = $as['id'].'##'.$as['obs'];
71         $texto = ($as['obs'] != '') ? $as['desc'].' - '.$as['obs']: $as['desc'];
72         $PERMISOS[$clave] = $texto;
73     }
74 // }}}
75 //AGREGO LOS ELEMENTOS DEL FORM {{{
76     if (@$PERMISOS) {
77         $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
78         $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
79         $FORM->addElement ('hidden', 'desc_ant'   , $descripcion);
80         $FORM->addElement ('static', 'desc_perfil', 'Descripcion', $descripcion);
81         $FORM->addElement ('select', 'permisos'   , 'Permisos'   , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
82         if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
83             $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
84         }
85         $FORM->addElement ('hidden', 'responsable', $responsable);
86         $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
87         $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
88         $FORM->addGroup($group,'botones');
89     }
90     else {
91         $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
92     }
93 // }}}
94 //AGREGO LAS REGLAS DE VALIDACION {{{
95     $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
96 // }}}
97 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
98     if (isset($_GET['accion']) && $_GET['accion'] != '') {
99         //MODIFICACION
100         $id_perfil    =& $FORM->getElement  ('id_perfil'  );
101         $desc_perfil  =& $FORM->getElement  ('desc_perfil');
102         $permisos     =& $FORM->getElement  ('permisos'   );
103         
104         if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
105             $tipo_perfil  =& $FORM->getElement  ('tipo_perfil');
106         }
107         $responsable  =& $FORM->getElement  ('responsable');
108         $group        =& $FORM->getElement  ('botones'    );
109         $group        =& $group->getElements('aceptar'    );
110         $aceptar      =& $group[0];
111
112         $permisos->setSelected($PERFIL->getPermisos());
113         
114         if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
115             $tipo_perfil->setSelected($PERFIL->getTipo());
116         }
117
118         if ($PERFIL->getResponsable() != '') {
119             $responsable->setValue($PERFIL->getResponsable());
120         }
121
122         //Modifico el valor del boton
123         $aceptar->setValue('Modificar');
124             
125         //ELIMINACION -> modifico el valor del boton
126         if ($_GET['accion'] == 'e') {
127             $aceptar->setValue('Eliminar');
128             $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
129             $FORM->freeze();
130         }
131     }
132 // }}}
133 //VALIDO EL FORMULARIO {{{
134     if ($FORM->validate()) {
135         // VEO SI SE CANCELO {{{
136         $botones = $FORM->getSubmitValue('botones');
137         if (@$botones['cancelar']) {
138             header('Location: perfiles');
139         }
140         // }}}
141         else {
142             $id_perfil    =& $FORM->getElement  ('id_perfil'  );
143             $desc_perfil  =& $FORM->getElement  ('desc_perfil');
144             $permisos     =& $FORM->getElement  ('permisos'   );
145             
146             if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
147                 $tipo_perfil  =& $FORM->getElement  ('tipo_perfil');
148                 $tipo_perfil_tmp  =  $tipo_perfil->getSelected();
149             }
150             $responsable  =& $FORM->getElement  ('responsable');
151             $group        =& $FORM->getElement  ('botones'    );
152             $group        =& $group->getElements('aceptar'    );
153             $aceptar      =& $group[0];
154       
155             $PERFIL->setDescripcion($desc_perfil->_text     );
156             $PERFIL->setResponsable($responsable->getValue());
157             $PERFIL->setPermisos   ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
158             
159             if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) {
160                 $PERFIL->setTipo       ($tipo_perfil_tmp['0']   );
161             }
162             
163             //Grabo y verifico si se produjo algun error
164             $res = $PERFIL->guardarDatos($aceptar->getValue());
165
166             if (PEAR::isError($res)) {
167                 $ERROR = new MECON_HTML_Error($res->getMessage());
168                 if ($aceptar->getValue() == 'Eliminar') {
169                     $FORM->freeze();
170                 }
171             }
172             else {
173                 $FORM->freeze();
174                 header('Location: perfiles');
175             }
176         }
177     }
178 // }}}
179 //DIBUJO LA PAGINA {{{
180     $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
181     $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
182     $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
183     $TABLA3->addRow($row,'align=left');    
184
185     $MARCO->addTitle('ABM Perfil');
186     $MARCO->addBody($TABLA3);
187     if (isset($ERROR)) {
188         $MARCO->addBody($ERROR);
189     }
190     $MARCO->addBody($FORM);
191     $MARCO->display();
192 //
193 //FIN
194 ?>