X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/2dd89e44c718262ef75b7c451d947a5e866b3e67..b49bcec7b53d0fef70585697308ba2473cd961e9:/sistema/www/usuarios/usuarios.php
diff --git a/sistema/www/usuarios/usuarios.php b/sistema/www/usuarios/usuarios.php
index 2b4c4f4..173a56c 100644
--- a/sistema/www/usuarios/usuarios.php
+++ b/sistema/www/usuarios/usuarios.php
@@ -21,15 +21,13 @@
//
//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
- if (!$SAMURAI_PERM->tiene(SAMURAI_DEVELOPER)) {
-// header('Location: error')
- }
+$SAMURAI_PERM->chequear(SAMURAI_ALTA_USUARIO, SAMURAI_BAJA_USUARIO, SAMURAI_MODI_USUARIO, SAMURAI_DEVELOPER);
//}}}
//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 = '';
@@ -38,21 +36,21 @@
$aHrefElim = $aHref.'';
// }}}
//VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
-if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
+if (!@$_SESSION['samurai']['id_sistema']) {
header('Location: ./../sel-sistema');
}
// }}}
//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');