X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/ff300eaf76c4d30ccf8b12cef9813be55235a26c..ae54c437912b1b019bebb0ea137ced664d8dc299:/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 97a3153..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 {{{
@@ -42,14 +49,14 @@
// }}}
//CREO LOS OBJETO NECESARIOS {{{
$SISTEMA = new SAMURAI_Sistema ($DB, $idSistema);
- $TABLASIST = new Tabla ('cellpadding=2');
- $TABLAPERM = new Tabla ('cellpadding=2');
- $SISTEMA->setResponsable($_SESSION['samurai']['login']);
+ $TABLASIST = new MECON_HTML_Tabla ('cellpadding=2');
+ $TABLAPERM = new MECON_HTML_Tabla ('cellpadding=2');
+ $SISTEMA->setResponsable($_SESSION['usuario']);
// }}}
//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');
@@ -59,7 +66,7 @@
$aHrefModif = $aHref.'';
$aHrefElim = $aHref.'';
- $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 );
@@ -68,12 +75,12 @@
$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();
-
- foreach ($asocs as $key => $asoc) {
+
+ foreach ($asocs as $asoc) {
$obs = ereg_replace(' ' , '%20', $asoc['obs']); //Cambio los espacios por %20 para que funcione bien con el netscape
$estilo = 'comun';
$permiso = new SAMURAI_Permiso($DB, $asoc['id']);
@@ -89,12 +96,11 @@
// }}}
//OPCION VOLVER {{{
- $TABLAVOLVER = new Tabla ('cellspacing=0');
+ $TABLAVOLVER = new MECON_HTML_Tabla ('cellspacing=0');
$row = array (' Volver a Sistemas');
$TABLAVOLVER->addRow($row,'align=left');
// }}}
//DIBUJO LA PAGINA {{{
- $MARCO = new Marco ('../../conf/confSecciones.php');
$MARCO->addBody($TABLAVOLVER);
$MARCO->addTitle('Asociar Permisos y Sistemas');
//AGREGO LA TABLA DEL SISTEMA