X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/680fec850e9496324530768194c51535c60d8cf8..9002d01b94477c868b4b6b84eb496262ea30fadf:/sistema/www/sistemas/sistemas.php?ds=sidebyside diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php index 5bfd70d..8c96533 100644 --- a/sistema/www/sistemas/sistemas.php +++ b/sistema/www/sistemas/sistemas.php @@ -19,17 +19,21 @@ // // $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.'Modificar Sistema'; $aHrefElim = $aHref.'Eliminar Sistema'; - $aHrefPerm = 'Definir Permisos'; + $aHrefPerm = 'Definir Permisos'; //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ if (!@$_SESSION['samurai']['id_sistema']) { header('Location: ./../sel-sistema?redirect=sistemas/sistemas'); @@ -39,10 +43,10 @@ $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER); $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