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 {{{
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());
75 $FORM->addElement ('text' , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
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');
84 $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
87 //AGREO LAS REGLAS DE VALIDACION {{{
90 $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
92 $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
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];
102 $perfiles->setSelected($USUARIO->getPerfiles());
104 //Modifico el valor del boton
105 $aceptar->setValue('Modificar');
107 //ELIMINACION -> modifico el valor del boton
108 if ($_GET['accion'] == 'e') {
109 $aceptar->setValue('Eliminar');
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');
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];
132 $login3 = $login2->_text;
135 $login3 = $login2->getValue();
137 $USUARIO->setLogin($login3);
138 $res = $USUARIO->verificarLogin();
139 if ($aceptar->getValue() == 'Grabar') {
140 $res2 = $USUARIO->verificarAsociacionExistente();
142 if (PEAR::isError($res)) {
143 $ERROR = new MECON_HTML_Error($res->getMessage());
145 elseif (PEAR::isError($res2)) {
146 $ERROR =new MECON_HTML_Error($res2->getMessage());
149 $USUARIO->setPerfiles($perfiles->getSelected());
151 $res = $USUARIO->guardarDatos($aceptar->getValue());
153 if (PEAR::isError($res)) {
154 $ERROR = new MECON_HTML_Error($res->getMessage());
155 if ($aceptar->getValue() == 'Eliminar') {
161 header('Location: usuarios');
167 //DIBUJO LA PAGINA {{{
168 $MARCO = new Marco ('../../conf/confSecciones.php');
169 $MARCO->addBody($TABLA);
171 $MARCO->addBody($ERROR);
173 $MARCO->addBody($FORM);