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 // +----------------------------------------------------------------------+
23 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
24 $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
28 require_once 'MECON/HTML/QuickForm.php';
29 require_once 'MECON/HTML/Tabla.php';
30 require_once 'MECON/HTML/Error.php';
33 require_once 'SAMURAI/Perfil.php';
34 require_once 'SAMURAI/Usuario.php';
35 require_once 'SAMURAI/Sistema.php';
37 require_once 'MECON/HTML/Image.php';
39 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
40 if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
41 header('Location: ./../sel-sistema');
44 //CREO LOS OBJETOS NECESARIOS {{{
45 if (@$_GET['login']) {
46 $login = $_GET['login'];
53 $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
54 $FORM = new MECON_HTML_QuickForm ('usuarios_abm','post','usuarios-abm');
55 $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
56 $USUARIO = new SAMURAI_Usuario($DB, $login);
58 //OBTENGO LOS DATOS DE LA BASE {{{
59 $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
60 foreach ($tmps as $tmp) {
61 $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
64 //AGREGO LOS DATOS A LAS TABLAS {{{
65 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
66 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
67 $TABLA->addRow($row,'align=left');
69 //AGREGO LOS ELEMENTOS DEL FORM {{{
71 $FORM->addElement ('header', 'cabecera' , 'ABM Usuarios');
72 if ($login) { //Si esta el login solo permito modificar los perfiles asociados
73 $FORM->addElement ('static', 'login2', 'Login@Organismo' , $login );
74 $FORM->addElement ('hidden', 'login' , $login );
75 $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
78 $FORM->addElement ('text' , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
80 $FORM->addElement ('select', 'perfiles' , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
81 $FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
82 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
83 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \'usuarios\';return false;'));
84 $FORM->addGroup($group,'botones');
87 $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
90 //AGREO LAS REGLAS DE VALIDACION {{{
93 $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
95 $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
98 //SETEO LOS PERFILES SELECCIONADOS {{{
99 if (isset($_GET['accion']) && $_GET['accion'] != '') {
100 $perfiles =& $FORM->getElement ('perfiles');
101 $group =& $FORM->getElement ('botones' );
102 $group =& $group->getElements('aceptar' );
103 $aceptar =& $group[0];
105 $perfiles->setSelected($USUARIO->getPerfiles());
107 //Modifico el valor del boton
108 $aceptar->setValue('Modificar');
110 //ELIMINACION -> modifico el valor del boton
111 if ($_GET['accion'] == 'e') {
112 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
113 $aceptar->setValue('Eliminar');
118 //VALIDO EL FORMULARIO {{{
119 if ($FORM->validate()) {
120 // VEO SI SE CANCELO {{{
121 $botones = $FORM->getSubmitValue('botones');
122 if (@$botones['cancelar']) {
123 header('Location: usuarios');
127 $login2 =& $FORM->getElement ('login' );
128 $nombre =& $FORM->getElement ('nombre' );
129 $perfiles =& $FORM->getElement ('perfiles');
130 $group =& $FORM->getElement ('botones' );
131 $group =& $group->getElements('aceptar' );
132 $aceptar =& $group[0];
136 $login3 = $login2->_text;
139 $login3 = $login2->getValue();
141 $USUARIO->setLogin($login3);
142 $res = $USUARIO->verificarLogin();
143 if ($aceptar->getValue() == 'Grabar') {
144 $res2 = $USUARIO->verificarAsociacionExistente();
146 if (@PEAR::isError($res)) {
147 $ERROR = new MECON_HTML_Error($res->getMessage());
149 elseif (@PEAR::isError($res2)) {
150 $ERROR =new MECON_HTML_Error($res2->getMessage());
153 $USUARIO->setPerfiles($perfiles->getSelected());
155 $res = $USUARIO->guardarDatos($aceptar->getValue());
157 if (PEAR::isError($res)) {
158 $ERROR = new MECON_HTML_Error($res->getMessage());
159 if ($aceptar->getValue() == 'Eliminar') {
165 header('Location: usuarios');
171 //DIBUJO LA PAGINA {{{
172 $MARCO->addBody($TABLA);
174 $MARCO->addBody($ERROR);
176 $MARCO->addBody($FORM);