X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/e06899a60cc1bda43249f61aff28f99224b8013f..8696c036b17b561f3b6afb9a56e0d5839b8b9972:/sistema/www/sistemas/sistemas-permisos.php?ds=sidebyside diff --git a/sistema/www/sistemas/sistemas-permisos.php b/sistema/www/sistemas/sistemas-permisos.php index a721f80..9fe3c3c 100644 --- a/sistema/www/sistemas/sistemas-permisos.php +++ b/sistema/www/sistemas/sistemas-permisos.php @@ -29,6 +29,9 @@ require_once 'SAMURAI/Permiso.php'; // }}} // }}} +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER); +//}}} //OBTENGO EL ID DEL SISTEMA {{{ //El id de sistema viene por get o por post, no hay otra posibilidad $idSistema = 0; @@ -42,8 +45,8 @@ // }}} //CREO LOS OBJETO NECESARIOS {{{ $SISTEMA = new SAMURAI_Sistema ($DB, $idSistema); - $TABLASIST = new Tabla ('cellpadding=2'); - $TABLAPERM = new Tabla ('cellpadding=2'); + $TABLASIST = new MECON_HTML_Tabla ('cellpadding=2'); + $TABLAPERM = new MECON_HTML_Tabla ('cellpadding=2'); $SISTEMA->setResponsable($_SESSION['samurai']['login']); // }}} //AGREGO LA INFORMACION DEL SISTEMA {{{ @@ -59,7 +62,7 @@ $aHrefModif = $aHref.'Modificar'; $aHrefElim = $aHref.'Eliminar'; - $TABLA2 = new Tabla ('cellspacing=0'); + $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0'); $tt = ereg_replace ('##ACCION##' , 'n', $aHref); $tt = ereg_replace ('##PERMISO##', 'p', $tt ); $tt = ereg_replace ('##OBS##' , 'o', $tt ); @@ -89,7 +92,7 @@ // }}} //OPCION VOLVER {{{ - $TABLAVOLVER = new Tabla ('cellspacing=0'); + $TABLAVOLVER = new MECON_HTML_Tabla ('cellspacing=0'); $row = array (' Volver a Sistemas'); $TABLAVOLVER->addRow($row,'align=left'); // }}}