]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/perfiles/perfiles-abm.php
Agrego a la seccion perfiles la funcionalidad de tabladb.
[mecon/samurai.git] / sistema / www / perfiles / perfiles-abm.php
index 97ec8e170a34b1da36ef93ca14d12b26bbb7f4df..5d15fdfbbc776e3ac94bc323a700e3e0496af7fa 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';
@@ -38,8 +55,8 @@ $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones
     require_once 'MECON/HTML/Image.php';
 // }}}
 //CREO LOS OBJETO NECESARIOS {{{
-    if (@$_GET['id_perfil']) {
-        $id_perfil = $_GET['id_perfil'];
+    if (@$_GET['_id_perfil']) {
+        $id_perfil = $_GET['_id_perfil'];
     }
     elseif (@$_POST['id_perfil']) {
         $id_perfil = $_POST['id_perfil'];
@@ -48,6 +65,7 @@ $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones
         $id_perfil = null;
     }
     $FORM = new MECON_HTML_QuickForm ('perfiles_abm','post','perfiles-abm');
+    $FORM->renderer->updateAttributes('width="400"');
     $SISTEMA = new SAMURAI_Sistema ($DB, $_SESSION['samurai']['id_sistema']);
     $PERFIL = new SAMURAI_Perfil ($DB, $id_perfil,
             $_SESSION['samurai']['id_sistema']);
@@ -59,7 +77,7 @@ $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones
         $responsable = $_SESSION['usuario'];
     }
     
-    if (!@$_GET['id_perfil']) {
+    if (!@$_GET['_id_perfil']) {
         if (@$_GET['desc_perfil']) {
             $PERFIL->setDescripcion(@$_GET['desc_perfil']);
         }
@@ -86,7 +104,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');
     }