2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
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 // +----------------------------------------------------------------------+
25 require_once 'MECON/HTML/QuickForm.php';
26 require_once 'MECON/HTML/Tabla.php';
27 require_once 'MECON/HTML/Error.php';
30 require_once 'SAMURAI/Perfil.php';
31 require_once 'SAMURAI/Usuario.php';
32 require_once 'SAMURAI/Sistema.php';
34 require_once 'HTML/Image.php';
36 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
37 if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
38 header('Location: ./../sel-sistema');
41 //CREO LOS OBJETOS NECESARIOS {{{
42 if (@$_GET['login']) {
43 $login = $_GET['login'];
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);
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();
61 //AGREGO LOS DATOS A LAS TABLAS {{{
62 $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
63 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
64 $TABLA->addRow($row,'align=left');
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());
74 $FORM->addElement ('text' , 'login' , 'Login' , array( 'value' => $login , 'size' => '20'));
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');
82 //AGREO LAS REGLAS DE VALIDACION {{{
84 $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
86 $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
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];
95 $perfiles->setSelected($USUARIO->getPerfiles());
97 //Modifico el valor del boton
98 $aceptar->setValue('Modificar');
100 //ELIMINACION -> modifico el valor del boton
101 if ($_GET['accion'] == 'e') {
102 $aceptar->setValue('Eliminar');
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');
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];
125 $login3 = $login2->_text;
128 $login3 = $login2->getValue();
130 $USUARIO->setLogin($login3);
131 $res = $USUARIO->verificarLogin();
132 if (PEAR::isError($res)) {
133 $ERROR = new MECON_HTML_Error($res->getMessage());
136 $USUARIO->setPerfiles($perfiles->getSelected());
138 $res = $USUARIO->guardarDatos($aceptar->getValue());
140 if (PEAR::isError($res)) {
141 $ERROR = new MECON_HTML_Error($res->getMessage());
142 if ($aceptar->getValue() == 'Eliminar') {
148 header('Location: usuarios');
154 //DIBUJO LA PAGINA {{{
155 $MARCO = new Marco ('../../conf/confSecciones.php');
156 $MARCO->addBody($TABLA);
158 $MARCO->addBody($ERROR);
160 $MARCO->addBody($FORM);