X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/79cc4f777b6fe9d907ccad24a2fc65246d0253ed..6fcc7afad8df2d0a29337748c3ee41153fb73a77:/sistema/www/sistemas/sistemas.php
diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php
index 6fb38a5..0485b1a 100644
--- a/sistema/www/sistemas/sistemas.php
+++ b/sistema/www/sistemas/sistemas.php
@@ -19,20 +19,24 @@
//
// $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/HTML/Tabla.php';
require_once 'SAMURAI/Sistema.php';
-//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
-$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
-//}}}
$aHrefPopup = '';
$aHref = '';
$aHrefModif = $aHref.'';
$aHrefElim = $aHref.'';
$aHrefPerm = '';
//VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
- if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) {
- header('Location: ./../sel-sistema');
+ if (!@$_SESSION['samurai']['id_sistema']) {
+ header('Location: ./../sel-sistema?redirect=sistemas/sistemas');
}
// }}}
@@ -41,8 +45,8 @@ $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
$TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
$row = array ('Seleccionar otro sistema para trabajar', $aHref.'Ingresar Nuevo Sistema');
$TABLA2->addRow($row);
- $TABLA2->setColAlign(0,'left');
- $TABLA2->setColAlign(1,'right');
+ $TABLA2->updateColAttributes(0,'align="left"');
+ $TABLA2->updateColAttributes(1,'align="right"');
$TABLA = new MECON_HTML_Tabla ('cellpadding=2');
$row = array ('Id','Nombre','Modif.','Elim.','Perm.');
@@ -65,6 +69,10 @@ $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
);
$TABLA->addRow($row);
}
+ $TABLA->updateColAttributes(0, 'width="5%"');
+ $TABLA->updateColAttributes(2, 'width="8%"');
+ $TABLA->updateColAttributes(3, 'width="8%"');
+ $TABLA->updateColAttributes(4, 'width="8%"');
//Agrego las cosas al cuerpo de la pagina