X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/3c702b40a1806798e475c48abb456e5a9c2dac72..dca3e83212951982c59f002efc6c349f9d9c0ad2:/sistema/www/usuarios/usuarios.php diff --git a/sistema/www/usuarios/usuarios.php b/sistema/www/usuarios/usuarios.php index e1a900e..410ee6d 100644 --- a/sistema/www/usuarios/usuarios.php +++ b/sistema/www/usuarios/usuarios.php @@ -20,14 +20,19 @@ // $Id$ // +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ + if (!$SAMURAI_PERM->tiene(SAMURAI_DEVELOPER)) { +// header('Location: error') + } +//}}} //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 A USUARIOS-ABM {{{ +//LINKS {{{ + $aHrefPopup = ''; $aHref = ''; $aHrefModif = $aHref.'Modificar Usuario'; $aHrefElim = $aHref.'Eliminar Usuario'; @@ -38,37 +43,52 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { } // }}} //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_ALTA_USUARIO)) { + $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_MODI_USUARIO)) { + $row[] = 'Modif.'; + } + if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO)) { + $row[] = 'Elim.'; + } $TABLA->addRow($row,'cabecera'); foreach ($usuarios as $usuario) { + $Popup = ereg_replace('##LOGIN##' , $usuario->getLogin(), $aHrefPopup); $Modif = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefModif); $Elim = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefElim ); + $Popup = $Popup.$usuario->getLogin().''; $Modif = ereg_replace('##ACCION##', 'm' , $Modif ); $Elim = ereg_replace('##ACCION##', 'e' , $Elim ); - $row = array ( $usuario->getLogin(), - $usuario->getNombre(), - $Modif, - $Elim, - ); + $row = array ( $Popup, $usuario->getNombre()); + if ($SAMURAI_PERM->tiene(SAMURAI_MODI_USUARIO)) { + $row[] = $Modif; + } + if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO)) { + $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);