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