]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/usuarios/usuarios-abm.php
Agregando los popups
[mecon/samurai.git] / sistema / www / usuarios / usuarios-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:  mié jul 16 13:37:33 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // 
22
23 //REQUIRE ONCE {{{
24     //MECON {{{
25     require_once 'MECON/HTML/QuickForm.php';
26     require_once 'MECON/HTML/Tabla.php';
27     require_once 'MECON/HTML/Error.php';
28     //}}}
29     //SAMURAI {{{
30     require_once 'SAMURAI/Perfil.php';
31     require_once 'SAMURAI/Usuario.php';
32     require_once 'SAMURAI/Sistema.php';
33     //}}}
34     require_once 'HTML/Image.php';
35 // }}}
36 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
37 if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
38     header('Location: ./../sel-sistema');    
39 }
40 // }}}   
41 //CREO LOS OBJETOS NECESARIOS {{{
42     if (@$_GET['login']) {
43         $login = $_GET['login'];
44         $validar = 0;
45     }
46     else {
47         $validar = 1;
48         $login = null;
49     }
50     $TABLA   = new Tabla ('cellspacing=0');
51     $FORM    = new MECON_HTML_QuickForm ('usuarios_abm','post','usuarios-abm');
52     $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
53     $USUARIO = new SAMURAI_Usuario($DB, $login);
54 // }}}
55 //OBTENGO LOS DATOS DE LA BASE {{{
56     $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
57     foreach ($tmps as $tmp) {
58         $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
59     }
60 //}}}
61 //AGREGO LOS DATOS A LAS TABLAS {{{
62     $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
63     $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
64     $TABLA->addRow($row,'align=left');    
65 //}}}
66 //AGREGO LOS ELEMENTOS DEL FORM {{{
67     if (@$PERFILES) {
68         $FORM->addElement ('header', 'cabecera'   , 'ABM Usuarios');
69         if ($login) { //Si esta el login solo permito modificar los perfiles asociados
70             $FORM->addElement ('static', 'login2', 'Login@Organismo' , $login );
71             $FORM->addElement ('hidden', 'login' , $login );
72             $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
73         }
74         else {
75             $FORM->addElement ('text'  , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
76         }
77         $FORM->addElement ('select', 'perfiles'   , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
78         $FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
79         $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar', array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
80         $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \'usuarios\';return false;'));
81         $FORM->addGroup($group,'botones');
82     }
83     else {
84         $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
85     }
86 // }}}
87 //AGREO LAS REGLAS DE VALIDACION {{{
88     if (@$PERFILES) {
89         if (@$validar) {
90             $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
91         }
92         $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
93     }
94 // }}}
95 //SETEO LOS PERFILES SELECCIONADOS {{{
96     if (isset($_GET['accion']) && $_GET['accion'] != '') {
97         $perfiles =& $FORM->getElement  ('perfiles');
98         $group    =& $FORM->getElement  ('botones' );
99         $group    =& $group->getElements('aceptar' );
100         $aceptar  =& $group[0];
101         
102         $perfiles->setSelected($USUARIO->getPerfiles());
103         
104         //Modifico el valor del boton
105         $aceptar->setValue('Modificar');
106             
107         //ELIMINACION -> modifico el valor del boton
108         if ($_GET['accion'] == 'e') {
109             $aceptar->setValue('Eliminar');
110             $FORM->freeze();
111         }
112     }
113 // }}}
114 //VALIDO EL FORMULARIO {{{
115     if ($FORM->validate()) {
116         // VEO SI SE CANCELO {{{
117         $botones = $FORM->getSubmitValue('botones');
118         if (@$botones['cancelar']) {
119             header('Location: perfiles');
120         }
121         // }}}
122         else {
123             $login2   =& $FORM->getElement  ('login'   ); 
124             $nombre   =& $FORM->getElement  ('nombre'  );
125             $perfiles =& $FORM->getElement  ('perfiles');
126             $group    =& $FORM->getElement  ('botones' );
127             $group    =& $group->getElements('aceptar' );
128             $aceptar  =& $group[0];
129             $res = '';
130
131             if ($login) {
132                 $login3 = $login2->_text;
133             }
134             else {
135                 $login3 = $login2->getValue();
136             }
137             $USUARIO->setLogin($login3);
138             $res  = $USUARIO->verificarLogin();
139             if ($aceptar->getValue() == 'Grabar') {
140                 $res2 = $USUARIO->verificarAsociacionExistente();
141             }
142             if (PEAR::isError($res)) {
143                 $ERROR = new MECON_HTML_Error($res->getMessage());
144             }
145             elseif (PEAR::isError($res2)) {
146                 $ERROR =new MECON_HTML_Error($res2->getMessage());
147             }
148             else {
149                 $USUARIO->setPerfiles($perfiles->getSelected());
150
151                 $res = $USUARIO->guardarDatos($aceptar->getValue());
152
153                 if (PEAR::isError($res)) {
154                     $ERROR = new MECON_HTML_Error($res->getMessage());
155                     if ($aceptar->getValue() == 'Eliminar') {
156                         $FORM->freeze();
157                     }
158                 }
159                 else {
160                     $FORM->freeze();
161                     header('Location: usuarios');
162                 }
163             }
164         }
165     }
166 // }}}
167 //DIBUJO LA PAGINA {{{
168     $MARCO = new Marco ('../../conf/confSecciones.php');
169     $MARCO->addBody($TABLA);
170     if (isset($ERROR)) {
171         $MARCO->addBody($ERROR);
172     }
173     $MARCO->addBody($FORM);
174     $MARCO->display();
175 // }}}
176 //FIN
177 ?>