]> git.llucax.com Git - mecon/samurai.git/commitdiff
BugFixes
authorMartín Marrese <marrese@gmail.com>
Thu, 15 Jan 2004 22:39:59 +0000 (22:39 +0000)
committerMartín Marrese <marrese@gmail.com>
Thu, 15 Jan 2004 22:39:59 +0000 (22:39 +0000)
sistema/www/perfiles/perfiles-abm.php

index 97ec8e170a34b1da36ef93ca14d12b26bbb7f4df..275bc437e8b86c3046244609ba1f06279506bdb6 100644 (file)
@@ -28,6 +28,23 @@ if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
 //}}}
 
+//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;
+}
+//}}}
+
 // REQUIRE_ONCE {{{
     require_once 'MECON/HTML/QuickForm.php';
     require_once 'MECON/HTML/Tabla.php';
@@ -86,7 +103,8 @@ $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones
         $FORM->addElement ('static', 'desc_perfil', 'Descripción', $descripcion);
         $FORM->addElement ('select', 'permisos'   , 'Permisos'   , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
         $FORM->addElement ('hidden', 'responsable', $responsable);
-        $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=\'perfiles\';return false;'));
         $FORM->addGroup($group,'botones');
     }