X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/1fce1689d24ee6eed11644946bfa777a06d2ef8e..f3692172201650cb32cd500e1add6f5735b02a8c:/sistema/www/sistemas/sistemas-permisos.php?ds=sidebyside diff --git a/sistema/www/sistemas/sistemas-permisos.php b/sistema/www/sistemas/sistemas-permisos.php index b3870d9..020695a 100644 --- a/sistema/www/sistemas/sistemas-permisos.php +++ b/sistema/www/sistemas/sistemas-permisos.php @@ -29,6 +29,9 @@ require_once 'SAMURAI/Permiso.php'; // }}} // }}} +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER); +//}}} //OBTENGO EL ID DEL SISTEMA {{{ //El id de sistema viene por get o por post, no hay otra posibilidad $idSistema = 0; @@ -42,9 +45,9 @@ // }}} //CREO LOS OBJETO NECESARIOS {{{ $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'); @@ -59,7 +62,7 @@ $aHrefModif = $aHref.'Modificar'; $aHrefElim = $aHref.'Eliminar'; - $TABLA2 = new Tabla ('cellspacing=0'); + $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 ); @@ -72,14 +75,15 @@ $TABLAPERM->addRow($row, 'titulo'); $asocs = $SISTEMA->getAsociaciones(); - - 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 ); $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim); @@ -88,12 +92,11 @@ // }}} //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