X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/2a767add127bcb217dcc2ce2ca242f703b5022a0..10542daf46438502fdc1ab6b874ba17636687b2c:/sistema/www/sistemas/sistemas-permisos.php diff --git a/sistema/www/sistemas/sistemas-permisos.php b/sistema/www/sistemas/sistemas-permisos.php index 16c0710..fb4a506 100644 --- a/sistema/www/sistemas/sistemas-permisos.php +++ b/sistema/www/sistemas/sistemas-permisos.php @@ -19,12 +19,17 @@ // // $Id$ // +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->setSistema(SAMURAI_PERM); +if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { + $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER); +} +$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); +//}}} //REQUIRE_ONCE {{{ //MECON {{{ - require_once 'MECON/HTML/QuickForm.php'; require_once 'MECON/HTML/Tabla.php'; - require_once 'MECON/HTML/Error.php'; // }}} //SAMURAI {{{ require_once 'SAMURAI/Sistema.php'; @@ -40,145 +45,69 @@ elseif (isset($_POST['idSistema'])) { $idSistema = $_POST['idSistema']; } + $_SESSION['samurai']['id_sistema'] = $idSistema; // }}} //CREO LOS OBJETO NECESARIOS {{{ - $FORM = new MECON_HTML_QuickForm ('sistemas_permisos','post','sistemas-permisos'); $SISTEMA = new SAMURAI_Sistema ($DB, $idSistema); - $TABLASIST = new Tabla ('cellpadding=2'); - $TABLAPERM = new Tabla ('cellpadding=2'); - $SISTEMA->setResponsable($_SESSION['samurai']['login']); + $TABLASIST = new MECON_HTML_Tabla ('cellpadding=2'); + $TABLAPERM = new MECON_HTML_Tabla ('cellpadding=2'); + $SISTEMA->setResponsable($_SESSION['usuario']); // }}} //AGREGO LA INFORMACION DEL SISTEMA {{{ $row = array ('Datos del sistema'); $TABLASIST->addRow($row, 'cabecera colspan=3'); - $row = array ('Id', 'Nombre', 'Descripcion'); + $row = array ('Id', 'Nombre', 'DescripciĆ³n'); $TABLASIST->addRow($row, 'titulo'); $row = array ($SISTEMA->getId(), $SISTEMA->getNombre(), $SISTEMA->getDescripcion()); $TABLASIST->addRow($row, 'comun'); // }}} -//AGREGO LOS ELEMENTOS DEL FORM {{{ - //Obtengo la lista de permisos - $PERMISOS = SAMURAI_Permiso::getArrayPermisos($DB); - //Agrego elementos - $FORM->addElement ('header', 'cabecera' , 'Agregar una asociacion'); - $FORM->addElement ('hidden', 'idSistema' , $idSistema); - $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '1')); - $FORM->addElement ('hidden', 'permant'); //Permiso anterior - $FORM->addElement ('hidden', 'obsant'); //Obseracion anterior - $FORM->addElement ('text' , 'observacion', 'Observacion', array('size' => '30')); - $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar'); - $FORM->addGroup($group,'botones', '', ', '); -// }}} -//VALIDO EL FORMULARIO {{{ - if ($FORM->validate()) { - $idPermiso =& $FORM->getElement ('permisos' ); - $idPerm_ant =& $FORM->getElement ('permant' ); - $observacion =& $FORM->getElement ('observacion'); - $obs_ant =& $FORM->getElement ('obsant' ); - $group =& $FORM->getElement ('botones' ); - $group =& $group->getElements('aceptar' ); - $aceptar =& $group[0]; - - $tmp = $idPermiso->getSelected(); - $tmp = $tmp['0']; - if ($aceptar->getValue() == 'Grabar') { - $error = $SISTEMA->guardarAsociacion($tmp, $observacion->getValue()); - } - elseif ($aceptar->getValue() == 'Modificar') { - $error = $SISTEMA->modificarAsociacion($tmp, $idPerm_ant->getValue(), $observacion->getValue(), $obs_ant->getValue()); - } - elseif ($aceptar->getValue() == 'Eliminar') { - $error = $SISTEMA->eliminarAsociacion($tmp, $observacion->getValue()); - } - - if ($error) { - $ERROR = new MECON_HTML_Error('La asociacion ya existe, modifique alguno de sus datos'); - } - else { - $idPermiso->setSelected(null); - $observacion->setValue(null); - $aceptar->setValue('Grabar'); - } - } -// }}} -//VERIFICO COMO DEBO LLAMAR AL BOTON SUBMIT {{{ - if (isset($_GET['accion'])) { - $group =& $FORM->getElement ('botones'); - $group =& $group->getElements('aceptar'); - $aceptar =& $group[0]; - - if ($_GET['accion'] == 'm') { - $aceptar->setValue('Modificar'); - } - elseif ($_GET['accion'] == 'e') { - $aceptar->setValue('Eliminar'); - $FORM->freeze(); - } - } -// }}} -//CAPTURO SI HAY ACCION -> MODIFICAR O ELIMINAR -> MUESTRO LOS DATOS EN EL FORM {{{ - if (isset($_GET['accion'])) { - $idPermiso =& $FORM->getElement ('permisos' ); - $idPerm_ant =& $FORM->getElement ('permant' ); - $observacion =& $FORM->getElement ('observacion'); - $obs_ant =& $FORM->getElement ('obsant' ); - $idPermiso->setSelected($_GET['idPermiso']); - $idPerm_ant->setValue($_GET['idPermiso']); - $observacion->setValue($_GET['observacion']); - $obs_ant->setValue($_GET['observacion']); - } -// }}} //AGREGO LA INFORMACION DE LAS ASOCIACIONES {{{ - $aHref = ''; + $aHref = ''; $aHrefModif = $aHref.'Modificar'; $aHrefElim = $aHref.'Eliminar'; - $row = array ('Nombre', 'Observacion', 'Modif.', 'Elim.'); - $TABLAPERM->addRow($row, 'cabecera'); + + $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0'); + $tt = ereg_replace ('##ACCION##' , 'n', $aHref); + $tt = ereg_replace ('##PERMISO##', 'p', $tt ); + $tt = ereg_replace ('##OBS##' , 'o', $tt ); + $row = array ($tt.'Asociar nuevo permiso al sistema'); + $TABLA2->addRow($row, 'align=right'); + + $row = array ('Permisos Asociados al Sistema'); + $TABLAPERM->addRow($row, 'cabecera colspan=4'); + $row = array ('Nombre', 'ObservaciĆ³n', 'Modif.', 'Elim.'); + $TABLAPERM->addRow($row, 'titulo'); $asocs = $SISTEMA->getAsociaciones(); - - $idPerm_ant =& $FORM->getElement ('permant'); - $obs_ant =& $FORM->getElement ('obsant' ); - - foreach ($asocs as $key => $asoc) { + + foreach ($asocs as $asoc) { + $obs = ereg_replace(' ' , '%20', $asoc['obs']); //Cambio los espacios por %20 para que funcione bien con el netscape $estilo = 'comun'; $permiso = new SAMURAI_Permiso($DB, $asoc['id']); $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif); $Elim = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim ); - $Modif = ereg_replace('##OBS##' , $asoc['obs'], $Modif ); - $Elim = ereg_replace('##OBS##' , $asoc['obs'], $Elim ); + $Modif = ereg_replace('##OBS##' , $obs , $Modif ); + $Elim = ereg_replace('##OBS##' , $obs , $Elim ); $Modif = ereg_replace('##ACCION##' , 'm' , $Modif ); $Elim = ereg_replace('##ACCION##' , 'e' , $Elim ); - - if ($permiso->getId() == $idPerm_ant->getValue() && $asoc['obs'] == $obs_ant->getValue()) { - $estilo = 'titulo'; - } - $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim); $TABLAPERM->addRow($row, $estilo); } // }}} //OPCION VOLVER {{{ - $TABLAVOLVER = new Tabla ('cellspacing=0'); + $TABLAVOLVER = new MECON_HTML_Tabla ('cellspacing=0'); $row = array (' Volver a Sistemas'); $TABLAVOLVER->addRow($row,'align=left'); // }}} //DIBUJO LA PAGINA {{{ - $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($TABLAVOLVER); $MARCO->addTitle('Asociar Permisos y Sistemas'); //AGREGO LA TABLA DEL SISTEMA $MARCO->addBody($TABLASIST); $MARCO->addBody('
'); - //AGREGO EL ERROR - if (isset($ERROR)) { - $MARCO->addBody($ERROR); - } - //AGREGO LA TABLA DEL FORM - $MARCO->addBody($FORM); - $MARCO->addBody('
'); //AGREGO LA TABLA DE PERMISOS + $MARCO->addBody($TABLA2); $MARCO->addBody($TABLAPERM); $MARCO->display(); // }}}