2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
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 // +----------------------------------------------------------------------+
22 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
23 $SAMURAI_PERM->setSistema(SAMURAI_PERM);
24 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
25 $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
27 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
30 //OBTENGO LA ACCION {{{
31 switch ($_REQUEST['accion']) {
33 $b_accion = 'Modificar';
37 $b_accion = 'Eliminar';
49 require_once 'MECON/HTML/QuickForm.php';
50 require_once 'MECON/HTML/Tabla.php';
51 require_once 'MECON/HTML/Error.php';
54 require_once 'SAMURAI/Permiso.php';
58 //CREO LOS OBJETO NECESARIOS {{{
59 $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
60 $FORM->renderer->updateAttributes('width="400"');
63 //AGREGO LOS ELEMENTOS DEL FORM {{{
64 $FORM->addElement ('header', 'cabecera', 'ABM Permisos');
65 $FORM->addElement ('hidden', 'id_permiso');
66 $FORM->addElement ('text' , 'desc_permiso', 'Descripción',
68 $FORM->addElement ('hidden', 'responsable' , $_SESSION['usuario']);
69 $FORM->addElement ('hidden', 'accion', $accion);
70 $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
71 $group[] = HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar',
72 array ('onClick' => 'javascript:history.go(-1);return true;'));
73 $FORM->addGroup($group,'botones');
76 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
77 $FORM->addRule('desc_permiso', 'El campo descripción es obligatorio', 'required', '', 'client');
80 //CREO EL OBJETO PERMISO {{{
81 //Obtengo el id del permiso.
82 $idPermiso =& $FORM->getElement('id_permiso');
83 if (isset($_GET['accion']) && $accion != '') {
84 //Viene en el get es -> modificar o eliminar, me ocupo yo.
85 $id_permiso = $_GET['_id_permiso'];
86 $idPermiso->setValue($id_permiso);
89 //Viene en el post, no me ocupo yo.
90 $id_permiso = $idPermiso->getValue();
92 $PERMISO = new SAMURAI_Permiso ($DB, $id_permiso);
95 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
96 if (isset($_GET['accion']) && $accion != '') {
97 //MODIFICACION -> agrego la info a los elementos
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];
104 $desc_permiso->setValue ($PERMISO->getDescripcion());
106 if ($PERMISO->getResponsable() != '') {
107 $responsable->setValue($PERMISO->getResponsable());
110 $aceptar->setValue('Modificar');
112 //ELIMINACION -> modifico el valor del boton
113 if ($_GET['accion'] == 'e') {
114 $aceptar->setValue('Eliminar');
120 //VALIDO EL FORMULARIO {{{
121 if ($FORM->validate()) {
122 // VEO SI SE CANCELO {{{
123 $botones = $FORM->getSubmitValue('botones');
124 if (@$botones['cancelar']) {
125 header('Location: permisos');
128 $desc_permiso =& $FORM->getElement ('desc_permiso');
129 $responsable =& $FORM->getElement ('responsable' );
130 $group =& $FORM->getElement ('botones' );
131 $group =& $group->getElements('aceptar' );
132 $aceptar =& $group[0];
134 $PERMISO->setDescripcion($desc_permiso->getValue());
135 $PERMISO->setResponsable($responsable->getValue());
137 //Verifico si se produjo algun error
138 $res = $PERMISO->guardarDatos($aceptar->getValue());
140 if (PEAR::isError($res)) {
141 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
142 if ($aceptar->getValue() == 'Eliminar') {
148 header('Location: permisos');
153 //DIBUJO LA PAGINA {{{
154 $MARCO->addTitle('ABM Permisos');
156 $MARCO->addBody($ERROR);
158 $MARCO->addBody($FORM);