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 // +----------------------------------------------------------------------+
22 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
23 $SAMURAI_PERM->setSistema(SAMURAI_PERM);
24 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
25 $SAMURAI_PERM->setSistema($_SESSION['samurai']['id_sistema']);
26 $SAMURAI_PERM->chequear(SAMURAI_PERM_USUARIO_ALTA, SAMURAI_PERM_USUARIO_BAJA, SAMURAI_PERM_USUARIO_MODIF, SAMURAI_PERM_DEVELOPER);
28 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
31 //XXX OBTENGO LA ACCION {{{
32 switch ($_REQUEST['accion']) {
34 $b_accion = 'Modificar';
38 $b_accion = 'Eliminar';
49 require_once 'MECON/HTML/QuickForm.php';
50 require_once 'MECON/HTML/Tabla.php';
51 require_once 'MECON/HTML/Error.php';
54 require_once 'SAMURAI/Perfil.php';
55 require_once 'SAMURAI/Usuario.php';
56 require_once 'SAMURAI/Sistema.php';
58 require_once 'MECON/HTML/Image.php';
60 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
61 if (!@$_SESSION['samurai']['id_sistema']) {
62 header('Location: ./../sel-sistema?redirect=usuarios/usuarios');
65 //CREO LOS OBJETOS NECESARIOS {{{
66 if (@$_GET['login']) {
67 $login = $_GET['login'];
76 $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
77 $FORM = new MECON_HTML_QuickForm ('usuarios_abm','post','usuarios-abm');
78 $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
79 $USUARIO = new SAMURAI_Usuario($DB, $login, $_SESSION['samurai']['id_sistema']);
81 //OBTENGO LOS DATOS DE LA BASE {{{
82 $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
83 foreach ($tmps as $tmp) {
84 $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
87 //AGREGO LOS DATOS A LAS TABLAS {{{
88 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
89 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
90 $TABLA->addRow($row,'align=left');
92 //AGREGO LOS ELEMENTOS DEL FORM {{{
94 $FORM->addElement ('header', 'cabecera' , 'ABM Usuarios');
95 if ($login) { //Si esta el login solo permito modificar los perfiles asociados
96 $FORM->addElement ('static', 'login2', 'Login@Organismo' , $login );
97 $FORM->addElement ('hidden', 'login' , $login );
98 $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
101 $FORM->addElement ('text' , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
103 $FORM->addElement ('select', 'perfiles' , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
104 $FORM->addElement ('hidden', 'responsable', $_SESSION['usuario']);
105 $FORM->addElement ('hidden', 'accion', $accion);
106 $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
107 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \'usuarios\';return false;'));
108 $FORM->addGroup($group,'botones');
111 $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
114 //AGREO LAS REGLAS DE VALIDACION {{{
117 $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
119 $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
122 //SETEO LOS PERFILES SELECCIONADOS {{{
123 if (isset($_GET['accion']) && $_GET['accion'] != '') {
124 $perfiles =& $FORM->getElement ('perfiles');
125 $group =& $FORM->getElement ('botones' );
126 $group =& $group->getElements('aceptar' );
127 $aceptar =& $group[0];
129 $perfiles->setSelected($USUARIO->getPerfiles());
131 //Modifico el valor del boton
132 $aceptar->setValue('Modificar');
134 //ELIMINACION -> modifico el valor del boton
135 if ($_GET['accion'] == 'e') {
136 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
137 $aceptar->setValue('Eliminar');
142 //VALIDO EL FORMULARIO {{{
143 if ($FORM->validate()) {
144 // VEO SI SE CANCELO {{{
145 $botones = $FORM->getSubmitValue('botones');
146 if (@$botones['cancelar']) {
147 header('Location: usuarios');
151 $login2 =& $FORM->getElement ('login' );
152 $nombre =& $FORM->getElement ('nombre' );
153 $perfiles =& $FORM->getElement ('perfiles');
154 $group =& $FORM->getElement ('botones' );
155 $group =& $group->getElements('aceptar' );
156 $aceptar =& $group[0];
160 $login3 = $login2->_text;
163 $login3 = $login2->getValue();
165 $USUARIO->setLogin($login3);
167 $res = $USUARIO->verificarLogin();
168 if ($aceptar->getValue() == 'Grabar') {
169 $res2 = $USUARIO->verificarAsociacionExistente();
171 if (@PEAR::isError($res)) {
172 $ERROR = new MECON_HTML_Error($res->getMessage());
174 elseif (@PEAR::isError($res2)) {
175 $ERROR =new MECON_HTML_Error($res2->getMessage());
178 $USUARIO->setPerfiles($perfiles->getSelected());
180 $res = $USUARIO->guardarDatos($aceptar->getValue());
182 if (PEAR::isError($res)) {
183 $ERROR = new MECON_HTML_Error($res->getMessage());
184 if ($aceptar->getValue() == 'Eliminar') {
190 header('Location: usuarios');
196 //DIBUJO LA PAGINA {{{
197 $MARCO->addBody($TABLA);
199 $MARCO->addBody($ERROR);
201 $MARCO->addBody($FORM);