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 //XXX 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';
57 //CREO LOS OBJETO NECESARIOS {{{
58 $FORM = new MECON_HTML_QuickForm ('permisos_abm','post','permisos-abm');
60 //AGREGO LOS ELEMENTOS DEL FORM {{{
61 $FORM->addElement ('header', 'cabecera', 'ABM Permisos');
62 $FORM->addElement ('hidden', 'id_permiso');
63 $FORM->addElement ('text' , 'desc_permiso', 'Descripción', array('size'=>'50'));
64 $FORM->addElement ('hidden', 'responsable' , $_SESSION['usuario']);
65 $FORM->addElement ('hidden', 'accion', $accion);
66 $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
67 $group[] = HTML_QuickForm::createElement('button', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:history.go(-1);return true;'));
68 $FORM->addGroup($group,'botones');
70 //AGREGO LAS REGLAS DE VALIDACION DE LOS ELEMENTOS {{{
71 $FORM->addRule('desc_permiso', 'El campo descripción es obligatorio', 'required', '', 'client');
73 //CREO EL OBJETO PERMISO {{{
74 //Obtengo el id del permiso.
75 $idPermiso =& $FORM->getElement('id_permiso');
76 if (isset($_GET['accion']) && $_GET['accion'] != '') {
77 //Viene en el get es -> modificar o eliminar, me ocupo yo.
78 $id_permiso = $_GET['idPermiso'];
79 $idPermiso->setValue($id_permiso);
82 //Viene en el post, no me ocupo yo.
83 $id_permiso = $idPermiso->getValue();
85 $PERMISO = new SAMURAI_Permiso ($DB, $id_permiso);
87 //SETEO LOS VALORES DE LOS ELEMENTOS DEL OBJETO FORM {{{
88 if (isset($_GET['accion']) && $_GET['accion'] != '') {
89 //MODIFICACION -> agrego la info a los elementos
90 $desc_permiso =& $FORM->getElement ('desc_permiso');
91 $responsable =& $FORM->getElement ('responsable' );
92 $group =& $FORM->getElement ('botones' );
93 $group =& $group->getElements('aceptar' );
94 $aceptar =& $group[0];
96 $desc_permiso->setValue ($PERMISO->getDescripcion());
98 if ($PERMISO->getResponsable() != '') {
99 $responsable->setValue($PERMISO->getResponsable());
102 $aceptar->setValue('Modificar');
104 //ELIMINACION -> modifico el valor del boton
105 if ($_GET['accion'] == 'e') {
106 $aceptar->setValue('Eliminar');
107 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
112 //VALIDO EL FORMULARIO {{{
113 if ($FORM->validate()) {
114 // VEO SI SE CANCELO {{{
115 $botones = $FORM->getSubmitValue('botones');
116 if (@$botones['cancelar']) {
117 header('Location: permisos');
120 $desc_permiso =& $FORM->getElement ('desc_permiso');
121 $responsable =& $FORM->getElement ('responsable' );
122 $group =& $FORM->getElement ('botones' );
123 $group =& $group->getElements('aceptar' );
124 $aceptar =& $group[0];
126 $PERMISO->setDescripcion($desc_permiso->getValue());
127 $PERMISO->setResponsable($responsable->getValue());
129 //Verifico si se produjo algun error
130 $res = $PERMISO->guardarDatos($aceptar->getValue());
132 if (PEAR::isError($res)) {
133 $ERROR = new MECON_HTML_Error(traducir($res->getMessage()));
134 if ($aceptar->getValue() == 'Eliminar') {
140 header('Location: permisos');
144 //DIBUJO LA PAGINA {{{
145 $MARCO->addTitle('ABM Permisos');
147 $MARCO->addBody($ERROR);
149 $MARCO->addBody($FORM);