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);
33 require_once 'MECON/HTML/QuickForm.php';
34 require_once 'MECON/HTML/Tabla.php';
35 require_once 'MECON/HTML/Error.php';
38 require_once 'SAMURAI/Perfil.php';
39 require_once 'SAMURAI/Usuario.php';
40 require_once 'SAMURAI/Sistema.php';
42 require_once 'MECON/HTML/Image.php';
44 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
45 if (!@$_SESSION['samurai']['id_sistema']) {
46 header('Location: ./../sel-sistema?redirect=usuarios/usuarios');
49 //CREO LOS OBJETOS NECESARIOS {{{
50 if (@$_GET['login']) {
51 $login = $_GET['login'];
60 $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
61 $FORM = new MECON_HTML_QuickForm ('usuarios_abm','post','usuarios-abm');
62 $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
63 $USUARIO = new SAMURAI_Usuario($DB, $login, $_SESSION['samurai']['id_sistema']);
65 //OBTENGO LOS DATOS DE LA BASE {{{
66 $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
67 foreach ($tmps as $tmp) {
68 $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
71 //AGREGO LOS DATOS A LAS TABLAS {{{
72 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
73 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
74 $TABLA->addRow($row,'align=left');
76 //AGREGO LOS ELEMENTOS DEL FORM {{{
78 $FORM->addElement ('header', 'cabecera' , 'ABM Usuarios');
79 if ($login) { //Si esta el login solo permito modificar los perfiles asociados
80 $FORM->addElement ('static', 'login2', 'Login@Organismo' , $login );
81 $FORM->addElement ('hidden', 'login' , $login );
82 $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
85 $FORM->addElement ('text' , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
87 $FORM->addElement ('select', 'perfiles' , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
88 $FORM->addElement ('hidden', 'responsable', $_SESSION['usuario']);
89 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
90 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \'usuarios\';return false;'));
91 $FORM->addGroup($group,'botones');
94 $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
97 //AGREO LAS REGLAS DE VALIDACION {{{
100 $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
102 $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
105 //SETEO LOS PERFILES SELECCIONADOS {{{
106 if (isset($_GET['accion']) && $_GET['accion'] != '') {
107 $perfiles =& $FORM->getElement ('perfiles');
108 $group =& $FORM->getElement ('botones' );
109 $group =& $group->getElements('aceptar' );
110 $aceptar =& $group[0];
112 $perfiles->setSelected($USUARIO->getPerfiles());
114 //Modifico el valor del boton
115 $aceptar->setValue('Modificar');
117 //ELIMINACION -> modifico el valor del boton
118 if ($_GET['accion'] == 'e') {
119 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
120 $aceptar->setValue('Eliminar');
125 //VALIDO EL FORMULARIO {{{
126 if ($FORM->validate()) {
127 // VEO SI SE CANCELO {{{
128 $botones = $FORM->getSubmitValue('botones');
129 if (@$botones['cancelar']) {
130 header('Location: usuarios');
134 $login2 =& $FORM->getElement ('login' );
135 $nombre =& $FORM->getElement ('nombre' );
136 $perfiles =& $FORM->getElement ('perfiles');
137 $group =& $FORM->getElement ('botones' );
138 $group =& $group->getElements('aceptar' );
139 $aceptar =& $group[0];
143 $login3 = $login2->_text;
146 $login3 = $login2->getValue();
148 $USUARIO->setLogin($login3);
149 $res = $USUARIO->verificarLogin();
150 if ($aceptar->getValue() == 'Grabar') {
151 $res2 = $USUARIO->verificarAsociacionExistente();
153 if (@PEAR::isError($res)) {
154 $ERROR = new MECON_HTML_Error($res->getMessage());
156 elseif (@PEAR::isError($res2)) {
157 $ERROR =new MECON_HTML_Error($res2->getMessage());
160 $USUARIO->setPerfiles($perfiles->getSelected());
162 $res = $USUARIO->guardarDatos($aceptar->getValue());
164 if (PEAR::isError($res)) {
165 $ERROR = new MECON_HTML_Error($res->getMessage());
166 if ($aceptar->getValue() == 'Eliminar') {
172 header('Location: usuarios');
178 //DIBUJO LA PAGINA {{{
179 $MARCO->addBody($TABLA);
181 $MARCO->addBody($ERROR);
183 $MARCO->addBody($FORM);