X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/e06899a60cc1bda43249f61aff28f99224b8013f..b8f8c3239f369a693994d882c317d87e06f070b6:/sistema/www/usuarios/usuarios.php diff --git a/sistema/www/usuarios/usuarios.php b/sistema/www/usuarios/usuarios.php index 680a11a..465fdbb 100644 --- a/sistema/www/usuarios/usuarios.php +++ b/sistema/www/usuarios/usuarios.php @@ -19,14 +19,20 @@ // // $Id$ // - +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->setSistema(SAMURAI_PERM); +if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { + $SAMURAI_PERM->setSistema($_SESSION['samurai']['id_sistema']); + $SAMURAI_PERM->chequear(SAMURAI_PERM_USUARIO_ALTA, SAMURAI_PERM_USUARIO_BAJA, SAMURAI_PERM_USUARIO_MODIF, SAMURAI_PERM_DEVELOPER); +} +$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); +//}}} //REQUIRE ONCE {{{ require_once 'MECON/HTML/Tabla.php'; require_once 'SAMURAI/Usuario.php'; require_once 'SAMURAI/Sistema.php'; - require_once 'HTML/Image.php'; + require_once 'MECON/HTML/Image.php'; // }}} - //LINKS {{{ $aHrefPopup = ''; $aHref = ''; @@ -34,26 +40,37 @@ $aHrefElim = $aHref.'Eliminar Usuario'; // }}} //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ -if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { - header('Location: ./../sel-sistema'); +if (!@$_SESSION['samurai']['id_sistema']) { + header('Location: ./../sel-sistema?redirect=usuarios/usuarios'); } // }}} //CREO LOS OBJETOS NECESARIOS {{{ - $TABLA2 = new Tabla ('cellspacing=0'); - $TABLA = new Tabla ('cellpadding=2'); - $TABLA3 = new Tabla ('cellspacing=0'); + $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0'); + $TABLA = new MECON_HTML_Tabla ('cellpadding=2'); + $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0'); $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']); // }}} //OBTENGO LA INFORMACION DE LA BASE {{{ $usuarios = SAMURAI_Usuario::getUsuarios($DB, $_SESSION['samurai']['id_sistema']); // }}} //AGREGO LOS DATOS A LAS TABLAS {{{ - $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); + $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); $row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().''); $TABLA3->addRow($row,'align=left'); - $row = array ($aHref.'Agregar Nuevo Usuario'); - $TABLA2->addRow($row,'align=right'); - $row = array ('Login','Nombre','Modif.','Elim.'); + + //Agrego el link a nuevo + if ($SAMURAI_PERM->tiene(SAMURAI_PERM_USUARIO_ALTA)) { + $row = array ($aHref.'Agregar Nuevo Usuario'); + $TABLA2->addRow($row,'align=right'); + } + //Genero la cabecera de la tabla + $row = array ('Login','Nombre'); + if ($SAMURAI_PERM->tiene(SAMURAI_PERM_USUARIO_MODIF)) { + $row[] = 'Modif.'; + } + if ($SAMURAI_PERM->tiene(SAMURAI_PERM_USUARIO_BAJA)) { + $row[] = 'Elim.'; + } $TABLA->addRow($row,'cabecera'); foreach ($usuarios as $usuario) { $Popup = ereg_replace('##LOGIN##' , $usuario->getLogin(), $aHrefPopup); @@ -62,11 +79,14 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { $Popup = $Popup.$usuario->getLogin().''; $Modif = ereg_replace('##ACCION##', 'm' , $Modif ); $Elim = ereg_replace('##ACCION##', 'e' , $Elim ); - $row = array ( $Popup, - $usuario->getNombre(), - $Modif, - $Elim, - ); + $row = array ( $Popup, $usuario->getNombre()); + if ($SAMURAI_PERM->tiene(SAMURAI_PERM_USUARIO_MODIF)) { + $row[] = $Modif; + } + if ($SAMURAI_PERM->tiene(SAMURAI_PERM_USUARIO_BAJA)) { + $row[] = $Elim; + } + $TABLA->addRow($row); } // }}}