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
22 require_once 'MECON/HTML/QuickForm.php';
23 require_once 'MECON/HTML/Tabla.php';
25 //OBTENGO EL ID DEL SISTEMA {{
26 //El id de sistema viene por get o por post, no hay otra posibilidad
28 if (isset($_GET['idSistema'])) {
29 $idSistema = $_GET['idSistema'];
31 elseif (isset($_POST['idSistema'])) {
32 $idSistema = $_POST['idSistema'];
35 //CREO LOS OBJETO NECESARIOS {{{
36 $SAMURAI = new Samurai($DB);
37 $FORM = new MECON_HTML_QuickForm ('sistemas_permisos','post','sistemas-permisos');
38 $SISTEMA = new Sistema ($DB, $idSistema);
39 $TABLASIST = new Tabla ('cellpadding=2');
40 $TABLAPERM = new Tabla ('cellpadding=2');
42 $SISTEMA->setResponsable($_SESSION['samurai']['login']);
43 //AGREGO LA INFORMACION DEL SISTEMA {{{
44 $row = array ('Id', 'Nombre', 'Descripcion');
45 $TABLASIST->addRow($row, 'cabecera');
46 $row = array ($SISTEMA->getId(), $SISTEMA->getNombre(), $SISTEMA->getDescripcion());
47 $TABLASIST->addRow($row, 'comun');
49 //AGREGO LOS ELEMENTOS DEL FORM {{{
50 //Obtengo la lista de permisos
51 $PERMISOS = $SAMURAI->getSelectPermisos();
53 $FORM->addElement ('header', 'cabecera' , 'Agregar una asociacion');
54 $FORM->addElement ('hidden', 'idSistema' , $idSistema);
55 $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '1'));
56 $FORM->addElement ('hidden', 'permant'); //Permiso anterior
57 $FORM->addElement ('hidden', 'obsant'); //Obseracion anterior
58 $FORM->addElement ('text' , 'observacion', 'Observacion', array('size' => '30'));
59 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
60 $FORM->addGroup($group,'botones', '', ', ');
62 //VALIDO EL FORMULARIO {{{
63 if ($FORM->validate()) {
64 $idPermiso =& $FORM->getElement ('permisos' );
65 $idPerm_ant =& $FORM->getElement ('permant' );
66 $observacion =& $FORM->getElement ('observacion');
67 $obs_ant =& $FORM->getElement ('obsant' );
68 $group =& $FORM->getElement ('botones' );
69 $group =& $group->getElements('aceptar' );
70 $aceptar =& $group[0];
72 $tmp = $idPermiso->getSelected();
74 if ($aceptar->getValue() == 'Grabar') {
75 $error = $SISTEMA->guardarAsociacion($tmp, $observacion->getValue());
77 elseif ($aceptar->getValue() == 'Modificar') {
78 $error = $SISTEMA->modificarAsociacion($tmp, $idPerm_ant->getValue(), $observacion->getValue(), $obs_ant->getValue());
80 elseif ($aceptar->getValue() == 'Eliminar') {
81 $error = $SISTEMA->eliminarAsociacion($tmp, $observacion->getValue());
86 $group[] = HTML_QuickForm::createElement('static', 'error' , 'Error', 'La asociacion ya existe, modifique alguno de sus datos.');
87 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
88 $FORM->removeElement('botones');
89 $FORM->addGroup($group,'botones', '', '<br>');
92 $idPermiso->setSelected(null);
93 $observacion->setValue(null);
94 $aceptar->setValue('Grabar');
98 //VERIFICO COMO DEBO LLAMAR AL BOTON SUBMIT {{{
99 if (isset($_GET['accion'])) {
100 $group =& $FORM->getElement ('botones');
101 $group =& $group->getElements('aceptar');
102 $aceptar =& $group[0];
104 if ($_GET['accion'] == 'm') {
105 $aceptar->setValue('Modificar');
107 elseif ($_GET['accion'] == 'e') {
108 $aceptar->setValue('Eliminar');
113 //CAPTURO SI HAY ACCION -> MODIFICAR O ELIMINAR -> MUESTRO LOS DATOS EN EL FORM {{{
114 if (isset($_GET['accion'])) {
115 $idPermiso =& $FORM->getElement ('permisos' );
116 $idPerm_ant =& $FORM->getElement ('permant' );
117 $observacion =& $FORM->getElement ('observacion');
118 $obs_ant =& $FORM->getElement ('obsant' );
119 $idPermiso->setSelected($_GET['idPermiso']);
120 $idPerm_ant->setValue($_GET['idPermiso']);
121 $observacion->setValue($_GET['observacion']);
122 $obs_ant->setValue($_GET['observacion']);
125 //AGREGO LA INFORMACION DE LAS ASOCIACIONES {{{
126 $aHref = '<a href="sistemas-permisos?accion=##ACCION##&idPermiso=##PERMISO##&observacion=##OBS##&idSistema='.$idSistema.'">';
127 $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar"></a>';
128 $aHrefElim = $aHref.'<img src="/MECON/images/general_eliminar.gif" border="0" alt="Eliminar" ></a>';
129 $row = array ('Nombre', 'Observacion', 'Modif.', 'Elim.');
130 $TABLAPERM->addRow($row, 'cabecera');
132 $asocs = $SISTEMA->getAsociaciones();
134 $idPerm_ant =& $FORM->getElement ('permant');
135 $obs_ant =& $FORM->getElement ('obsant' );
137 foreach ($asocs as $key => $asoc) {
139 $permiso = new Permiso($DB, $asoc['id']);
140 $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
141 $Elim = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
142 $Modif = ereg_replace('##OBS##' , $asoc['obs'], $Modif );
143 $Elim = ereg_replace('##OBS##' , $asoc['obs'], $Elim );
144 $Modif = ereg_replace('##ACCION##' , 'm' , $Modif );
145 $Elim = ereg_replace('##ACCION##' , 'e' , $Elim );
147 if ($permiso->getId() == $idPerm_ant->getValue() && $asoc['obs'] == $obs_ant->getValue()) {
151 $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim);
152 $TABLAPERM->addRow($row, $estilo);
156 //DIBUJO LA PAGINA {{{
157 $MARCO = new Marco ('../../conf/confSecciones.php');
158 $MARCO->addTitle('Asociar Permisos y Sistemas');
159 //AGREGO LA TABLA DEL SISTEMA
160 $MARCO->addBody($TABLASIST);
161 $MARCO->addBody('<BR>');
162 //AGREGO LA TABLA DEL FORM
163 $MARCO->addBody($FORM);
164 $MARCO->addBody('<BR>');
165 //AGREGO LA TABLA DE PERMISOS
166 $MARCO->addBody($TABLAPERM);