]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-permisos.php
BugFixes
[mecon/samurai.git] / sistema / www / sistemas / sistemas-permisos.php
index b3870d95747fbe3c31dcbe72f451ae1fbbeca2a6..fb4a5061b39d0422fa9ee216e6bbd3c5f3fd2f9a 100644 (file)
 //
 // $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 {{{
 // }}}
 //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.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar"></a>';
     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar" ></a>';
 
-    $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   );
 
     $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']);
         $Modif = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefModif);
         $Elim  = ereg_replace('##PERMISO##', $asoc['id'] , $aHrefElim );
-        $Modif = ereg_replace('##OBS##'    , $asoc['obs'], $Modif     );
-        $Elim  = ereg_replace('##OBS##'    , $asoc['obs'], $Elim      );
+        $Modif = ereg_replace('##OBS##'    , $obs        , $Modif     );
+        $Elim  = ereg_replace('##OBS##'    , $obs        , $Elim      );
         $Modif = ereg_replace('##ACCION##' , 'm'         , $Modif     );
         $Elim  = ereg_replace('##ACCION##' , 'e'         , $Elim      );
         $row = array ($permiso->getDescripcion(), $asoc['obs'], $Modif, $Elim);
 
 // }}}
 //OPCION VOLVER {{{
-    $TABLAVOLVER = new Tabla ('cellspacing=0');
+    $TABLAVOLVER = new MECON_HTML_Tabla ('cellspacing=0');
     $row = array ('<a href="sistemas" alt="Volver a la lista de Sistemas" ><img src="/MECON/images/general_volver4.gif" border="0">&nbsp;Volver a Sistemas</a>');
     $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