]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/perfiles/perfiles-abm.php
Libreria de Perl terminada.
[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         $FORM->addElement ('hidden', 'responsable', $responsable);
84         $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
85         $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\'perfiles\';return false;'));
86         $FORM->addGroup($group,'botones');
87     }
88     else {
89         $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
90     }
91 // }}}
92 //AGREGO LAS REGLAS DE VALIDACION {{{
93     $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
94 // }}}
95 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
96     if (isset($_GET['accion']) && $_GET['accion'] != '') {
97         //MODIFICACION
98         $id_perfil    =& $FORM->getElement  ('id_perfil'  );
99         $desc_perfil  =& $FORM->getElement  ('desc_perfil');
100         $permisos     =& $FORM->getElement  ('permisos'   );
101         $responsable  =& $FORM->getElement  ('responsable');
102         $group        =& $FORM->getElement  ('botones'    );
103         $group        =& $group->getElements('aceptar'    );
104         $aceptar      =& $group[0];
105
106         $permisos->setSelected($PERFIL->getPermisos());
107         
108         if ($PERFIL->getResponsable() != '') {
109             $responsable->setValue($PERFIL->getResponsable());
110         }
111
112         //Modifico el valor del boton
113         $aceptar->setValue('Modificar');
114             
115         //ELIMINACION -> modifico el valor del boton
116         if ($_GET['accion'] == 'e') {
117             $aceptar->setValue('Eliminar');
118             $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
119             $FORM->freeze();
120         }
121     }
122 // }}}
123 //VALIDO EL FORMULARIO {{{
124     if ($FORM->validate()) {
125         // VEO SI SE CANCELO {{{
126         $botones = $FORM->getSubmitValue('botones');
127         if (@$botones['cancelar']) {
128             header('Location: perfiles');
129         }
130         // }}}
131         else {
132             $id_perfil    =& $FORM->getElement  ('id_perfil'  );
133             $desc_perfil  =& $FORM->getElement  ('desc_perfil');
134             $permisos     =& $FORM->getElement  ('permisos'   );
135             $responsable  =& $FORM->getElement  ('responsable');
136             $group        =& $FORM->getElement  ('botones'    );
137             $group        =& $group->getElements('aceptar'    );
138             $aceptar      =& $group[0];
139       
140             $PERFIL->setDescripcion($desc_perfil->_text     );
141             $PERFIL->setResponsable($responsable->getValue());
142             $PERFIL->setPermisos   ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
143             
144             //Grabo y verifico si se produjo algun error
145             $res = $PERFIL->guardarDatos($aceptar->getValue());
146
147             if (PEAR::isError($res)) {
148                 $ERROR = new MECON_HTML_Error($res->getMessage());
149                 if ($aceptar->getValue() == 'Eliminar') {
150                     $FORM->freeze();
151                 }
152             }
153             else {
154                 $FORM->freeze();
155                 header('Location: perfiles');
156             }
157         }
158     }
159 // }}}
160 //DIBUJO LA PAGINA {{{
161     $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
162     $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
163     $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
164     $TABLA3->addRow($row,'align=left');    
165
166     $MARCO->addTitle('ABM Perfil');
167     $MARCO->addBody($TABLA3);
168     if (isset($ERROR)) {
169         $MARCO->addBody($ERROR);
170     }
171     $MARCO->addBody($FORM);
172     $MARCO->display();
173 //
174 //FIN
175 ?>