]> git.llucax.com Git - mecon/samurai.git/commitdiff
BugFix en HTML/Usuario.php.
authorMartín Marrese <marrese@gmail.com>
Mon, 16 Feb 2004 22:18:52 +0000 (22:18 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 16 Feb 2004 22:18:52 +0000 (22:18 +0000)
lib/SAMURAI/HTML/Usuario.php

index 2eb933fef77ebb7666ce7ca38136410ba23a5f65..b858e0c61250cfcb3f6b1c90ccfd138a68e6c466 100644 (file)
@@ -194,6 +194,22 @@ function SAMURAI_HTML_Usuario(&$MARCO, $id_sistema) {
                 $validar = 1;
                 $login = null;
             }
                 $validar = 1;
                 $login = null;
             }
+            //XXX OBTENGO LA ACCION {{{
+            switch ($_REQUEST['accion']) {
+                case 'm':
+                    $b_accion = 'Modificar';
+                    $accion = 'm';
+                    break;
+                case 'e':
+                    $b_accion = 'Eliminar';
+                    $accion = 'e';
+                    break;
+                default:
+                    $b_accion = 'Grabar';
+                    $accion = '';
+                    break;
+            }       
+            //}}}        
             $TABLA   = new MECON_HTML_Tabla ('cellspacing=0');
             $FORM    = new MECON_HTML_QuickForm ('samurai_usuarios','post', $_SERVER['PHP_SELF']);
             $SISTEMA = new SAMURAI_Sistema($DB, $id_sistema);
             $TABLA   = new MECON_HTML_Tabla ('cellspacing=0');
             $FORM    = new MECON_HTML_QuickForm ('samurai_usuarios','post', $_SERVER['PHP_SELF']);
             $SISTEMA = new SAMURAI_Sistema($DB, $id_sistema);
@@ -224,7 +240,8 @@ function SAMURAI_HTML_Usuario(&$MARCO, $id_sistema) {
                 }
                 $FORM->addElement ('select', 'perfiles'   , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
                 $FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
                 }
                 $FORM->addElement ('select', 'perfiles'   , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
                 $FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
-                $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
+                $FORM->addElement ('hidden', 'accion', $accion);
+                $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
                 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \''.$_SERVER['PHP_SELF'].'\';return false;'));
                 $FORM->addGroup($group,'botones');
             }
                 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \''.$_SERVER['PHP_SELF'].'\';return false;'));
                 $FORM->addGroup($group,'botones');
             }