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';
24 require_once 'SAMURAI/Sistema.php';
25 require_once 'SAMURAI/Permiso.php';
27 //OBTENGO EL ID DEL SISTEMA {{
28 //El id de sistema viene por get o por post, no hay otra posibilidad
30 if (isset($_GET['idSistema'])) {
31 $idSistema = $_GET['idSistema'];
33 elseif (isset($_POST['idSistema'])) {
34 $idSistema = $_POST['idSistema'];
37 //CREO LOS OBJETO NECESARIOS {{{
38 $FORM = new MECON_HTML_QuickForm ('sistemas_permisos','post','sistemas-permisos');
39 $SISTEMA = new SAMURAI_Sistema ($DB, $idSistema);
40 $TABLASIST = new Tabla ('cellpadding=2');
41 $TABLAPERM = new Tabla ('cellpadding=2');
43 $SISTEMA->setResponsable($_SESSION['samurai']['login']);
44 //AGREGO LA INFORMACION DEL SISTEMA {{{
45 $row = array ('Id', 'Nombre', 'Descripcion');
46 $TABLASIST->addRow($row, 'cabecera');
47 $row = array ($SISTEMA->getId(), $SISTEMA->getNombre(), $SISTEMA->getDescripcion());
48 $TABLASIST->addRow($row, 'comun');
50 //AGREGO LOS ELEMENTOS DEL FORM {{{
51 //Obtengo la lista de permisos
52 $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB);
54 $FORM->addElement ('header', 'cabecera' , 'Agregar una asociacion');
55 $FORM->addElement ('hidden', 'idSistema' , $idSistema);
56 $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '1'));
57 $FORM->addElement ('hidden', 'permant'); //Permiso anterior
58 $FORM->addElement ('hidden', 'obsant'); //Obseracion anterior
59 $FORM->addElement ('text' , 'observacion', 'Observacion', array('size' => '30'));
60 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
61 $FORM->addGroup($group,'botones', '', ', ');
63 //VALIDO EL FORMULARIO {{{
64 if ($FORM->validate()) {
65 $idPermiso =& $FORM->getElement ('permisos' );
66 $idPerm_ant =& $FORM->getElement ('permant' );
67 $observacion =& $FORM->getElement ('observacion');
68 $obs_ant =& $FORM->getElement ('obsant' );
69 $group =& $FORM->getElement ('botones' );
70 $group =& $group->getElements('aceptar' );
71 $aceptar =& $group[0];
73 $tmp = $idPermiso->getSelected();
75 if ($aceptar->getValue() == 'Grabar') {
76 $error = $SISTEMA->guardarAsociacion($tmp, $observacion->getValue());
78 elseif ($aceptar->getValue() == 'Modificar') {
79 $error = $SISTEMA->modificarAsociacion($tmp, $idPerm_ant->getValue(), $observacion->getValue(), $obs_ant->getValue());
81 elseif ($aceptar->getValue() == 'Eliminar') {
82 $error = $SISTEMA->eliminarAsociacion($tmp, $observacion->getValue());
86 $TABLA = new Tabla ('cellspacing=0');
87 $row = array ('<font color="red"><b>La asociacion ya existe, modifique alguno de sus datos</b></font>');
88 $TABLA->addRow($row,'align=left');
91 $idPermiso->setSelected(null);
92 $observacion->setValue(null);
93 $aceptar->setValue('Grabar');
97 //VERIFICO COMO DEBO LLAMAR AL BOTON SUBMIT {{{
98 if (isset($_GET['accion'])) {
99 $group =& $FORM->getElement ('botones');
100 $group =& $group->getElements('aceptar');
101 $aceptar =& $group[0];
103 if ($_GET['accion'] == 'm') {
104 $aceptar->setValue('Modificar');
106 elseif ($_GET['accion'] == 'e') {
107 $aceptar->setValue('Eliminar');
112 //CAPTURO SI HAY ACCION -> MODIFICAR O ELIMINAR -> MUESTRO LOS DATOS EN EL FORM {{{
113 if (isset($_GET['accion'])) {
114 $idPermiso =& $FORM->getElement ('permisos' );
115 $idPerm_ant =& $FORM->getElement ('permant' );
116 $observacion =& $FORM->getElement ('observacion');
117 $obs_ant =& $FORM->getElement ('obsant' );
118 $idPermiso->setSelected($_GET['idPermiso']);
119 $idPerm_ant->setValue($_GET['idPermiso']);
120 $observacion->setValue($_GET['observacion']);
121 $obs_ant->setValue($_GET['observacion']);
124 //AGREGO LA INFORMACION DE LAS ASOCIACIONES {{{
125 $aHref = '<a href="sistemas-permisos?accion=##ACCION##&idPermiso=##PERMISO##&observacion=##OBS##&idSistema='.$idSistema.'">';
126 $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar"></a>';
127 $aHrefElim = $aHref.'<img src="/MECON/images/general_eliminar.gif" border="0" alt="Eliminar" ></a>';
128 $row = array ('Nombre', 'Observacion', 'Modif.', 'Elim.');
129 $TABLAPERM->addRow($row, 'cabecera');
131 $asocs = $SISTEMA->getAsociaciones();
133 $idPerm_ant =& $FORM->getElement ('permant');
134 $obs_ant =& $FORM->getElement ('obsant' );
136 foreach ($asocs as $key => $asoc) {
138 $permiso = new SAMURAI_Permiso($DB, $asoc['id']);
139 $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
140 $Elim = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
141 $Modif = ereg_replace('##OBS##' , $asoc['obs'], $Modif );
142 $Elim = ereg_replace('##OBS##' , $asoc['obs'], $Elim );
143 $Modif = ereg_replace('##ACCION##' , 'm' , $Modif );
144 $Elim = ereg_replace('##ACCION##' , 'e' , $Elim );
146 if ($permiso->getId() == $idPerm_ant->getValue() && $asoc['obs'] == $obs_ant->getValue()) {
150 $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim);
151 $TABLAPERM->addRow($row, $estilo);
155 //DIBUJO LA PAGINA {{{
156 $MARCO = new Marco ('../../conf/confSecciones.php');
157 $MARCO->addTitle('Asociar Permisos y Sistemas');
158 //AGREGO LA TABLA DEL SISTEMA
159 $MARCO->addBody($TABLASIST);
160 $MARCO->addBody('<BR>');
163 $MARCO->addBody($TABLA);
165 //AGREGO LA TABLA DEL FORM
166 $MARCO->addBody($FORM);
167 $MARCO->addBody('<BR>');
168 //AGREGO LA TABLA DE PERMISOS
169 $MARCO->addBody($TABLAPERM);