]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/usuarios/usuarios-abm.php
FUNCIONALIDAD PRINCIPAL COMPLETA. Falta consultas, retocar las pantallas, y arreglar...
[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     $FORM->addElement ('header', 'cabecera'   , 'ABM Usuarios');
68     if ($login) { //Si esta el login solo permito modificar los perfiles asociados
69         $FORM->addElement ('static', 'login2', 'Login' , $login );
70         $FORM->addElement ('hidden', 'login' , $login );
71         $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
72     }
73     else {
74         $FORM->addElement ('text'  , 'login' , 'Login' , array( 'value' => $login , 'size' => '20'));
75     }
76     $FORM->addElement ('select', 'perfiles'   , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
77     $FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
78     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
79     $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;'));
80     $FORM->addGroup($group,'botones');
81 // }}}
82 //AGREO LAS REGLAS DE VALIDACION {{{
83     if (@$validar) {
84         $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
85     }
86     $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
87 // }}}
88 //SETEO LOS PERFILES SELECCIONADOS {{{
89     if (isset($_GET['accion']) && $_GET['accion'] != '') {
90         $perfiles =& $FORM->getElement  ('perfiles');
91         $group    =& $FORM->getElement  ('botones' );
92         $group    =& $group->getElements('aceptar' );
93         $aceptar  =& $group[0];
94         
95         $perfiles->setSelected($USUARIO->getPerfiles());
96         
97         //Modifico el valor del boton
98         $aceptar->setValue('Modificar');
99             
100         //ELIMINACION -> modifico el valor del boton
101         if ($_GET['accion'] == 'e') {
102             $aceptar->setValue('Eliminar');
103             $FORM->freeze();
104         }
105     }
106 // }}}
107 //VALIDO EL FORMULARIO {{{
108     if ($FORM->validate()) {
109         // VEO SI SE CANCELO {{{
110         $botones = $FORM->getSubmitValue('botones');
111         if (@$botones['cancelar']) {
112             header('Location: perfiles');
113         }
114         // }}}
115         else {
116             $login2   =& $FORM->getElement  ('login'   ); 
117             $nombre   =& $FORM->getElement  ('nombre'  );
118             $perfiles =& $FORM->getElement  ('perfiles');
119             $group    =& $FORM->getElement  ('botones' );
120             $group    =& $group->getElements('aceptar' );
121             $aceptar  =& $group[0];
122             $res = '';
123
124             if ($login) {
125                 $login3 = $login2->_text;
126             }
127             else {
128                 $login3 = $login2->getValue();
129             }
130             $USUARIO->setLogin($login3);
131             $res = $USUARIO->verificarLogin();
132             if (PEAR::isError($res)) {
133                 $ERROR = new MECON_HTML_Error($res->getMessage());
134             }
135             else {
136                 $USUARIO->setPerfiles($perfiles->getSelected());
137
138                 $res = $USUARIO->guardarDatos($aceptar->getValue());
139
140                 if (PEAR::isError($res)) {
141                     $ERROR = new MECON_HTML_Error($res->getMessage());
142                     if ($aceptar->getValue() == 'Eliminar') {
143                         $FORM->freeze();
144                     }
145                 }
146                 else {
147                     $FORM->freeze();
148                     header('Location: usuarios');
149                 }
150             }
151         }
152     }
153 // }}}
154 //DIBUJO LA PAGINA {{{
155     $MARCO = new Marco ('../../conf/confSecciones.php');
156     $MARCO->addBody($TABLA);
157     if (isset($ERROR)) {
158         $MARCO->addBody($ERROR);
159     }
160     $MARCO->addBody($FORM);
161     $MARCO->display();
162 // }}}
163 //FIN
164 ?>