X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/4a91ae5069fc847c7f27e84a8449fbbd0742e2b2..35dc97263ea8ab3af79406a00b8896e55c93d9b3:/sistema/www/perfiles/perfiles.php diff --git a/sistema/www/perfiles/perfiles.php b/sistema/www/perfiles/perfiles.php index 1c98531..a56c575 100644 --- a/sistema/www/perfiles/perfiles.php +++ b/sistema/www/perfiles/perfiles.php @@ -19,11 +19,18 @@ // // $Id$ // - + +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ + if (!$SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL,SAMURAI_BAJA_PERFIL,SAMURAI_MODI_PERFIL)) { +// header('Location: error') + } +//}}} + +//REQUIRE ONCE {{{ require_once 'MECON/HTML/Tabla.php'; require_once 'SAMURAI/Perfil.php'; require_once 'SAMURAI/Sistema.php'; - +//}}} //LINKS {{{ $aHrefPopup = ''; $aHref = ''; @@ -48,9 +55,24 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); $row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().''); $TABLA3->addRow($row,'align=left'); - $row = array ('Ingresar Nuevo Perfil'); - $TABLA2->addRow($row,'align=right'); - $row = array ('Id','Descripcion','Tipo','Modif.','Elim.'); + + //Agrego el link a nuevo + if ($SAMURAI_PERM->tiene(SAMURAI_ALTA_PERFIL)) { + $row = array ('Ingresar Nuevo Perfil'); + $TABLA2->addRow($row,'align=right'); + } + //Genero la cabecera de la tabla + $row = array ('Id','Descripcion'); + if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) { + $row[] = 'Tipo'; + } + if ($SAMURAI_PERM->tiene(SAMURAI_MODI_PERFIL)) { + $row[] = 'Modif.'; + } + if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_PERFIL)) { + $row[] = 'Elim.'; + } + $TABLA->addRow($row,'cabecera'); foreach ($perfiles as $perfil) { $Popup = ereg_replace('##PERFIL##', $perfil->getId(), $aHrefPopup); @@ -59,17 +81,21 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { $Popup = $Popup.$perfil->getDescripcion().''; $Modif = ereg_replace('##ACCION##', 'm' , $Modif ); $Elim = ereg_replace('##ACCION##', 'e' , $Elim ); - $row = array ( $perfil->getId(), - $Popup, - $perfil->getTipo(), - $Modif, - $Elim, - ); + $row = array ($perfil->getId(), $Popup); + + if ($SAMURAI_PERM->tiene(SAMURAI_TIPO_PERFIL)) { + $row[] = $perfil->getTipo(); + } + if ($SAMURAI_PERM->tiene(SAMURAI_MODI_PERFIL)) { + $row[] = $Modif; + } + if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_PERFIL)) { + $row[] = $Elim; + } $TABLA->addRow($row); } // }}} //DIBUJO LA PAGINA {{{ - $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($TABLA3); $MARCO->addBody($TABLA2->toHtml(1)); $MARCO->addBody($TABLA);