]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/sel-sistema.php
fff2afe692d8ea95e1f17c8942913271e32230dd
[mecon/samurai.git] / sistema / www / sel-sistema.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: lun jul  7 10:39:58 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // 
22     require_once 'MECON/HTML/QuickForm.php';
23     require_once 'MECON/HTML/Tabla.php';
24
25
26
27 //CREO LOS OBJETOS NECESARIOS {{{
28     $FORM     = new MECON_HTML_QuickForm ('sel_sistema','post','sel-sistema');
29     $SAMURAI  = new Samurai($DB);
30     $SISTEMAS = $SAMURAI->getSelectSistemas();
31 // }}}
32 //AGREGO LOS ELEMENTOS DEL FORM {{{
33     $FORM->addElement ('header', 'cabecera', 'Seleccione el sistema con el cual quiere trabajar');
34     $FORM->addElement ('select', 'sistemas', 'Sistemas', $SISTEMAS, array('size' => '1'));
35     
36     //SI ESTA EL LOGIN NO LO PIDO {{{
37     if (!@$_SESSION['samurai']['login']) {
38         $FORM->addElement ('text', 'responsable', 'Responsable', array('size' => '30'));
39         $FORM->addRule ('responsable', 'El campo responsable es obligatorio', 'required');
40     }
41     // }}}
42     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Seleccionar');
43     $FORM->addGroup($group,'botones', '', ',&nbsp;');
44 // }}}
45     
46 //VALIDO EL FORMULARIO {{{
47     if ($FORM->validate()) {
48         $sistema =& $FORM->getElement ('sistemas');
49         $tmp     = $sistema->getSelected();
50         $_SESSION['samurai']['id_sistema'] = $tmp['0'];
51         
52         if ($FORM->elementExists('responsable')) {
53             $responsable =& $FORM->getElement ('responsable');
54             $_SESSION['samurai']['login'] = $responsable->getValue();
55         }
56         header('Location: index');
57     }
58 // }}}
59 // DIBUJO LA PAGINA {{{
60     $_SESSION['deshabilitar_links'] = true; //MODIFICAR ESTO CUANDO SE HAGA LA FUNCION DESHABILITAR LINKS
61     $MARCO = new Marco ('../conf/confSecciones.php');
62     $MARCO->addBody($FORM);
63     $MARCO->display();
64 // }}}
65 ?>