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