]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sel-sistema.php
Agregue la documentacion de Perfil Embebido y Usuario Embebido, y las referencias...
[mecon/samurai.git] / sistema / www / sel-sistema.php
index 75ad23ca227606b8abe8327e6d27d18def1b25f7..df1afcefdafd4c0faa73bf6567e1f405e8dc0243 100644 (file)
 //AGREGO LOS ELEMENTOS DEL FORM {{{
     $FORM->addElement ('header', 'cabecera', 'Seleccione el sistema con el cual quiere trabajar');
     $FORM->addElement ('select', 'sistemas', 'Sistemas', $SISTEMAS, array('size' => '1'));
-    
-    //SI ESTA EL LOGIN NO LO PIDO {{{
-    if (!@$_SESSION['samurai']['login']) {
-        $FORM->addElement ('text', 'responsable', 'Responsable', array('size' => '30'));
-        $FORM->addRule ('responsable', 'El campo responsable es obligatorio', 'required');
+    if (@$_GET['redirect']) {
+        $redirect = $_GET['redirect'];
     }
-    // }}}
+    elseif (@$_POST['redirect']) {
+        $redirect = $_POST['redirect'];
+    }
+    else {
+        $redirect = 'index';
+    }
+    $FORM->addElement ('hidden', 'redirect', $redirect);
     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Seleccionar');
     $FORM->addGroup($group,'botones', '', ', ');
 // }}}
         
         if ($FORM->elementExists('responsable')) {
             $responsable =& $FORM->getElement ('responsable');
-            $_SESSION['samurai']['login'] = $responsable->getValue();
+            $_SESSION['usuario'] = $responsable->getValue();
         }
-        header('Location: index');
+        header('Location: '.$_POST['redirect']);
     }
 // }}}
 // DIBUJO LA PAGINA {{{
-    $_SESSION['deshabilitar_links'] = true; //MODIFICAR ESTO CUANDO SE HAGA LA FUNCION DESHABILITAR LINKS
-    $MARCO = new Marco ('../conf/confSecciones.php');
+    $MARCO->habilitarLinks(false); //MODIFICAR ESTO CUANDO SE HAGA LA FUNCION DESHABILITAR LINKS
     $MARCO->addBody($FORM);
     $MARCO->display();
 // }}}