X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/b49bcec7b53d0fef70585697308ba2473cd961e9..9002d01b94477c868b4b6b84eb496262ea30fadf:/sistema/www/sistemas/sistemas.php
diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php
index 6dffa47..8c96533 100644
--- a/sistema/www/sistemas/sistemas.php
+++ b/sistema/www/sistemas/sistemas.php
@@ -19,30 +19,34 @@
//
// $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 = '';
+ $aHrefPerm = '';
//VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
if (!@$_SESSION['samurai']['id_sistema']) {
- header('Location: ./../sel-sistema');
+ header('Location: ./../sel-sistema?redirect=sistemas/sistemas');
}
// }}}
$sistemas = SAMURAI_Sistema::getSistemas($DB);
$TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
- $row = array ('Seleccionar otro sistema para trabajar', $aHref.'Ingresar Nuevo Sistema');
+ $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