X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/e06899a60cc1bda43249f61aff28f99224b8013f..35dc97263ea8ab3af79406a00b8896e55c93d9b3:/sistema/www/perfiles/perfiles.php?ds=sidebyside diff --git a/sistema/www/perfiles/perfiles.php b/sistema/www/perfiles/perfiles.php index 28e52a1..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,12 +81,17 @@ 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); } // }}}