]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/permisos/permisos-abm.php
Retoques varios. Nada grave
[mecon/samurai.git] / sistema / www / permisos / permisos-abm.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
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: mar may 27 15:16:38 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // 
22     
23 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
24 $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
25 //}}}
26 //REQUIRE_ONCE {{{    
27     //MECON {{{
28     require_once 'MECON/HTML/QuickForm.php';
29     require_once 'MECON/HTML/Tabla.php';
30     require_once 'MECON/HTML/Error.php';
31     // }}}
32     //SAMURAI {{{
33     require_once 'SAMURAI/Permiso.php';
34     //}}}
35 //}}}
36 //CREO LOS OBJETO NECESARIOS {{{
37     $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
38 // }}}
39 //AGREGO LOS ELEMENTOS DEL FORM {{{
40     $FORM->addElement ('header', 'cabecera', 'ABM Permisos');
41     $FORM->addElement ('hidden', 'id_permiso');
42     $FORM->addElement ('text'  , 'desc_permiso', 'Descripcion', array('size'=>'50'));
43     $FORM->addElement ('hidden', 'responsable' , $_SESSION['samurai']['login']);
44     $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
45     $group[] = HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;'));
46     $FORM->addGroup($group,'botones');
47 // }}}
48 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
49     $FORM->addRule('desc_permiso', 'El campo descripcion es obligatorio', 'required', '', 'client');
50 // }}}
51 //CREO EL OBJETO PERMISO {{{
52     //Obtengo el id del permiso.
53     $idPermiso =& $FORM->getElement('id_permiso');
54     if (isset($_GET['accion']) && $_GET['accion'] != '') {
55         //Viene en el get es -> modificar o eliminar, me ocupo yo.
56         $id_permiso = $_GET['idPermiso'];
57         $idPermiso->setValue($id_permiso);
58     }
59     else {
60         //Viene en el post, no me ocupo yo.
61         $id_permiso = $idPermiso->getValue();
62     }
63     $PERMISO = new SAMURAI_Permiso ($DB, $id_permiso);
64 // }}}
65 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
66     if (isset($_GET['accion']) && $_GET['accion'] != '') {
67         //MODIFICACION -> agrego la info a los elementos
68         $desc_permiso =& $FORM->getElement  ('desc_permiso');
69         $responsable  =& $FORM->getElement  ('responsable' );
70         $group        =& $FORM->getElement  ('botones'     );
71         $group        =& $group->getElements('aceptar'     );
72         $aceptar      =& $group[0];
73
74         $desc_permiso->setValue ($PERMISO->getDescripcion());
75         
76         if ($PERMISO->getResponsable() != '') {
77             $responsable->setValue($PERMISO->getResponsable());
78         }
79         
80         $aceptar->setValue('Modificar');
81         
82         //ELIMINACION -> modifico el valor del boton
83         if ($_GET['accion'] == 'e') {
84             $aceptar->setValue('Eliminar');
85             $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
86             $FORM->freeze();
87         }
88     }
89 // }}}
90 //VALIDO EL FORMULARIO {{{
91     if ($FORM->validate()) {
92        // VEO SI SE CANCELO {{{
93         $botones = $FORM->getSubmitValue('botones');
94         if (@$botones['cancelar']) {
95             header('Location: permisos');
96         }
97         // }}}
98         $desc_permiso =& $FORM->getElement  ('desc_permiso');
99         $responsable  =& $FORM->getElement  ('responsable' );
100         $group        =& $FORM->getElement  ('botones'     );
101         $group        =& $group->getElements('aceptar'     );
102         $aceptar      =& $group[0];
103         
104         $PERMISO->setDescripcion($desc_permiso->getValue());
105         $PERMISO->setResponsable($responsable->getValue());
106         
107         //Verifico si se produjo algun error
108         $res = $PERMISO->guardarDatos($aceptar->getValue());
109
110         if (PEAR::isError($res)) {
111             $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
112             if ($aceptar->getValue() == 'Eliminar') {
113                 $FORM->freeze();
114             }
115         }
116         else {
117             $FORM->freeze();
118             header('Location: permisos');
119         }
120     }
121 // }}}
122 //DIBUJO LA PAGINA {{{
123     $MARCO->addTitle('ABM Permisos');
124     if (isset($ERROR)) {
125         $MARCO->addBody($ERROR);
126     }
127     $MARCO->addBody($FORM);
128     $MARCO->display();
129 // }}}
130 //FIN
131 ?>