X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/421bca9938fcbe0d0cf3e715a27f0a6bc37c15c3..dca3e83212951982c59f002efc6c349f9d9c0ad2:/sistema/www/usuarios/usuarios.php diff --git a/sistema/www/usuarios/usuarios.php b/sistema/www/usuarios/usuarios.php index 02ab0ac..410ee6d 100644 --- a/sistema/www/usuarios/usuarios.php +++ b/sistema/www/usuarios/usuarios.php @@ -21,7 +21,7 @@ // //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ - if (!$SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO, SAMURAI_MODI_USUARIO, SAMURAI_ALTA_USUARIO)) { + if (!$SAMURAI_PERM->tiene(SAMURAI_DEVELOPER)) { // header('Location: error') } //}}} @@ -29,7 +29,7 @@ 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 = ''; @@ -43,16 +43,16 @@ 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');