X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/52ec6b73aae5937cd9c04e150e6b261b8be98b01..6fcc7afad8df2d0a29337748c3ee41153fb73a77:/sistema/www/sistemas/sistemas-permisos.php diff --git a/sistema/www/sistemas/sistemas-permisos.php b/sistema/www/sistemas/sistemas-permisos.php index a5ef85a..fb4a506 100644 --- a/sistema/www/sistemas/sistemas-permisos.php +++ b/sistema/www/sistemas/sistemas-permisos.php @@ -19,6 +19,13 @@ // // $Id$ // +//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ +$SAMURAI_PERM->setSistema(SAMURAI_PERM); +if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { + $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER); +} +$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); +//}}} //REQUIRE_ONCE {{{ //MECON {{{ @@ -29,9 +36,6 @@ 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; @@ -52,7 +56,7 @@ $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER); //AGREGO LA INFORMACION DEL SISTEMA {{{ $row = array ('Datos del sistema'); $TABLASIST->addRow($row, 'cabecera colspan=3'); - $row = array ('Id', 'Nombre', 'Descripcion'); + $row = array ('Id', 'Nombre', 'DescripciĆ³n'); $TABLASIST->addRow($row, 'titulo'); $row = array ($SISTEMA->getId(), $SISTEMA->getNombre(), $SISTEMA->getDescripcion()); $TABLASIST->addRow($row, 'comun'); @@ -71,7 +75,7 @@ $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER); $row = array ('Permisos Asociados al Sistema'); $TABLAPERM->addRow($row, 'cabecera colspan=4'); - $row = array ('Nombre', 'Observacion', 'Modif.', 'Elim.'); + $row = array ('Nombre', 'ObservaciĆ³n', 'Modif.', 'Elim.'); $TABLAPERM->addRow($row, 'titulo'); $asocs = $SISTEMA->getAsociaciones();