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