]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/usuarios/usuarios-datos.php
Se corrige bug.
[mecon/samurai.git] / sistema / www / usuarios / usuarios-datos.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: jue jul 17 16:29:54 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // 
22
23 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
24     if (!$SAMURAI_PERM->tiene(SAMURAI_DEVELOPER)) {
25 //        header('Location: error')
26     }
27 //}}}
28 //REQUIRE ONCE {{{
29     //MECON {{{
30     require_once 'MECON/HTML/QuickForm.php';
31     require_once 'MECON/HTML/Error.php';
32     //}}}
33     //SAMURAI {{{
34     require_once 'SAMURAI/Usuario.php';
35     //}}}
36     require_once 'MECON/HTML/Image.php';
37     require_once 'HTML/Page.php';
38 // }}}
39 //CREO LOS OBJETOS NECESARIOS {{{
40     if (!@$_GET['login']) {
41         $FORM    = new MECON_HTML_Error('No hay un usuario seleccionado');
42     }
43     else {
44         $PAGE    = new HTML_Page(array ('doctype'=>'HTML 4.01 Transitional',
45                                         'charset'  => 'iso-8859-1',
46                                         'lineend'  => 'unix',
47                                         'language' => 'es',
48                                         'cache'    => 'false',
49                                         'simple'   => 'true'));
50         $PAGE->addStyleSheet('/MECON/css/general_estilos.css');
51         $FORM    = new MECON_HTML_QuickForm ('usuarios_datos','post','usuarios-datos');
52         $USUARIO = new SAMURAI_Usuario($DB, $_GET['login']);
53     }
54 // }}}
55
56 //OBTENGO LOS DATOS DE LA BASE {{{
57     $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
58     foreach ($tmps as $tmp) {
59         $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
60     }
61 //}}}
62
63 //AGREGO LOS ELEMENTOS AL FORM {{{
64     $FORM->addElement         ('static', 'login'   , 'Login@Organismo', $USUARIO->getLogin()                      );
65     $FORM->addElement         ('static', 'nrodoc'  , 'Nro Documento'  , $USUARIO->getNrodoc()                     );
66     $FORM->addElement         ('static', 'nombre'  , 'Nombre'         , $USUARIO->getNombre()                     );
67     $perf =& $FORM->addElement('select', 'perfiles', 'Perfiles'       , $PERFILES            , array ('size'=>'5'));
68     $perf->setSelected($USUARIO->getPerfiles());
69     $FORM->freeze();
70 // }}}
71
72 //DIBUJO LA PAGINA {{{
73     $PAGE->addBodyContent($FORM);
74     $imagen = new MECON_HTML_Image('/MECON/images/general_cerrar.gif');
75     $PAGE->addBodyContent('<a href="" onClick=\'self.close();return false;\'>'.$imagen->toHtml().'</a>');
76     $PAGE->setTitle('Datos del Usuario');
77     $PAGE->display();                          
78 // }}}
79 //FIN
80 ?>