]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sel-sistema.php
En consultas solo filtro aquellos usuarios que tengan asignado al menos un permiso...
[mecon/samurai.git] / sistema / www / sel-sistema.php
index 8f21d4d12586a0f504fa7d9806e3c1d64873e1c1..0aa27ef7690ac08a85c12a89a2f4e273876173ce 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
 // +----------------------------------------------------------------------+
 // | PHP Version 4                                                        |
 // +----------------------------------------------------------------------+
 //
 // $Id$
 // 
+
+//REQUIRE ONCE {{{
+    require_once 'HTML/Page.php';
     require_once 'MECON/HTML/QuickForm.php';
     require_once 'MECON/HTML/Tabla.php';
     require_once 'SAMURAI/Sistema.php';
-
+//}}}
 
 //CREO LOS OBJETOS NECESARIOS {{{
+   $PAGE    = new HTML_Page(array ('doctype'=>'HTML 4.01 Transitional',
+                                'charset'  => 'iso-8859-1',
+                                'lineend'  => 'unix',
+                                'language' => 'es',
+                                'cache'    => 'false',
+                                'simple'   => 'true'));
+    $PAGE->addStyleSheet('/MECON/css/marco.css');
     $FORM     = new MECON_HTML_QuickForm ('sel_sistema','post','sel-sistema');
-    $SISTEMAS = SAMURAI_Sistema::getArraySistemas($DB);
+    $TABLAFORM =& new MECON_HTML_Tabla ('width="400"', 'comun');
+    $FORM->renderer->setTable($TABLAFORM);
+    $SISTEMAS = SAMURAI_Sistema::getArraySistemasSeleccionar($DB);
 // }}}
 //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', '', ',&nbsp;');
 // }}}
-    
 //VALIDO EL FORMULARIO {{{
     if ($FORM->validate()) {
         $sistema =& $FORM->getElement ('sistemas');
         
         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->addBody($FORM);
-    $MARCO->display();
+    require_once 'MECON/HTML/Image.php';
+    $im =& new MECON_HTML_Image('images/copete.jpg');
+    $PAGE->addBodyContent($im);
+    $PAGE->addBodyContent($FORM);
+    $PAGE->addStyleSheet($FORM->getCSS());
+    $PAGE->setTitle('Seleccionar Sistema');
+    $PAGE->display();                          
 // }}}
 ?>