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 // +----------------------------------------------------------------------+
20 // $Id: sistemas-permisos.php 21 2003-06-25 22:26:30Z mmarre e
26 require_once 'MECON/HTML/QuickForm.php';
27 require_once 'MECON/HTML/Tabla.php';
29 //OBTENGO EL ID DEL SISTEMA {{
30 //El id de sistema viene por get o por post, no hay otra posibilidad
32 if (isset($_GET['idSistema'])) {
33 $idSistema = $_GET['idSistema'];
35 elseif (isset($_POST['idSistema'])) {
36 $idSistema = $_POST['idSistema'];
39 //CREO LOS OBJETO NECESARIOS {{{
40 $SAMURAI = new Samurai($DB);
41 $FORM = new MECON_HTML_QuickForm ('sistemas_permisos','post','sistemas-permisos');
42 $SISTEMA = new Sistema ($DB, $idSistema);
43 $TABLASIST = new Tabla ('cellpadding=2');
44 $TABLAPERM = new Tabla ('cellpadding=2');
46 $SISTEMA->setResponsable($_SESSION['samurai']['login']);
47 //AGREGO LA INFORMACION DEL SISTEMA {{{
48 $row = array ('Id', 'Nombre', 'Descripcion');
49 $TABLASIST->addRow($row, 'cabecera');
50 $row = array ($SISTEMA->getId(), $SISTEMA->getNombre(), $SISTEMA->getDescripcion());
51 $TABLASIST->addRow($row, 'comun');
53 //AGREGO LOS ELEMENTOS DEL FORM {{{
54 //Obtengo la lista de permisos
55 $PERMISOS = $SAMURAI->getSelectPermisos();
57 $FORM->addElement ('header', 'cabecera' , 'Agregar una asociacion');
58 $FORM->addElement ('hidden', 'idSistema' , $idSistema);
59 $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '1'));
60 $FORM->addElement ('hidden', 'permant'); //Permiso anterior
61 $FORM->addElement ('hidden', 'obsant'); //Obseracion anterior
62 $FORM->addElement ('text' , 'observacion', 'Observacion', array('size' => '30'));
63 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
64 $FORM->addGroup($group,'botones', '', ', ');
66 //VALIDO EL FORMULARIO {{{
67 if ($FORM->validate()) {
68 $idPermiso =& $FORM->getElement ('permisos' );
69 $idPerm_ant =& $FORM->getElement ('permant' );
70 $observacion =& $FORM->getElement ('observacion');
71 $obs_ant =& $FORM->getElement ('obsant' );
72 $group =& $FORM->getElement ('botones' );
73 $group =& $group->getElements('aceptar' );
74 $aceptar =& $group[0];
76 $tmp = $idPermiso->getSelected();
78 if ($aceptar->getValue() == 'Grabar') {
79 $error = $SISTEMA->guardarAsociacion($tmp, $observacion->getValue());
81 elseif ($aceptar->getValue() == 'Modificar') {
82 $error = $SISTEMA->modificarAsociacion($tmp, $idPerm_ant->getValue(), $observacion->getValue(), $obs_ant->getValue());
84 elseif ($aceptar->getValue() == 'Eliminar') {
85 $error = $SISTEMA->eliminarAsociacion($tmp, $observacion->getValue());
90 $group[] = HTML_QuickForm::createElement('static', 'error' , 'Error', 'La asociacion ya existe, modifique alguno de sus datos.');
91 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
92 $FORM->removeElement('botones');
93 $FORM->addGroup($group,'botones', '', '<br>');
96 $idPermiso->setSelected(null);
97 $observacion->setValue(null);
98 $aceptar->setValue('Grabar');
102 //VERIFICO COMO DEBO LLAMAR AL BOTON SUBMIT {{{
103 if (isset($_GET['accion'])) {
104 $group =& $FORM->getElement ('botones');
105 $group =& $group->getElements('aceptar');
106 $aceptar =& $group[0];
108 if ($_GET['accion'] == 'm') {
109 $aceptar->setValue('Modificar');
111 elseif ($_GET['accion'] == 'e') {
112 $aceptar->setValue('Eliminar');
117 //CAPTURO SI HAY ACCION -> MODIFICAR O ELIMINAR -> MUESTRO LOS DATOS EN EL FORM {{{
118 if (isset($_GET['accion'])) {
119 $idPermiso =& $FORM->getElement ('permisos' );
120 $idPerm_ant =& $FORM->getElement ('permant' );
121 $observacion =& $FORM->getElement ('observacion');
122 $obs_ant =& $FORM->getElement ('obsant' );
123 $idPermiso->setSelected($_GET['idPermiso']);
124 $idPerm_ant->setValue($_GET['idPermiso']);
125 $observacion->setValue($_GET['observacion']);
126 $obs_ant->setValue($_GET['observacion']);
129 //AGREGO LA INFORMACION DE LAS ASOCIACIONES {{{
130 $aHref = '<a href="sistemas-permisos?accion=##ACCION##&idPermiso=##PERMISO##&observacion=##OBS##&idSistema='.$idSistema.'">';
131 $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar"></a>';
132 $aHrefElim = $aHref.'<img src="/MECON/images/general_eliminar.gif" border="0" alt="Eliminar" ></a>';
133 $row = array ('Nombre', 'Observacion', 'Modif.', 'Elim.');
134 $TABLAPERM->addRow($row, 'cabecera');
136 $asocs = $SISTEMA->getAsociaciones();
138 $idPerm_ant =& $FORM->getElement ('permant');
139 $obs_ant =& $FORM->getElement ('obsant' );
141 foreach ($asocs as $key => $asoc) {
143 $permiso = new Permiso($DB, $asoc['id']);
144 $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
145 $Elim = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
146 $Modif = ereg_replace('##OBS##' , $asoc['obs'], $Modif );
147 $Elim = ereg_replace('##OBS##' , $asoc['obs'], $Elim );
148 $Modif = ereg_replace('##ACCION##' , 'm' , $Modif );
149 $Elim = ereg_replace('##ACCION##' , 'e' , $Elim );
151 if ($permiso->getId() == $idPerm_ant->getValue() && $asoc['obs'] == $obs_ant->getValue()) {
155 $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim);
156 $TABLAPERM->addRow($row, $estilo);
160 //DIBUJO LA PAGINA {{{
161 $MARCO = new Marco ('../../conf/confSecciones.php');
162 $MARCO->addTitle('Asociar Permisos y Sistemas');
163 //AGREGO LA TABLA DEL SISTEMA
164 $MARCO->addBody($TABLASIST);
165 $MARCO->addBody('<BR>');
166 //AGREGO LA TABLA DEL FORM
167 $MARCO->addBody($FORM);
168 $MARCO->addBody('<BR>');
169 //AGREGO LA TABLA DE PERMISOS
170 $MARCO->addBody($TABLAPERM);