X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/0ecc42815b25c93505bdc63406044ebd4c37283b..22d1ae1aa6bfee6df20dfa9544e14feaecc9fbf4:/sistema/www/sistemas/sistemas.php?ds=inline diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php index 874322b..e215fd4 100644 --- a/sistema/www/sistemas/sistemas.php +++ b/sistema/www/sistemas/sistemas.php @@ -18,28 +18,21 @@ // +----------------------------------------------------------------------+ // // $Id$ -// $Author$ -// $URL$ -// $Date$ -// $Rev$ // require_once 'MECON/HTML/Tabla.php'; + require_once 'SAMURAI/Sistema.php'; $aHref = ''; $aHrefModif = $aHref.'Modificar Sistema'; $aHrefElim = $aHref.'Eliminar Sistema'; $aHrefPerm = 'Definir Permisos'; - - $body = ''; - - if (isset($_SESSION['samurai']['id_sistema'])) { - $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']); - } - else { - $SAMURAI = new Samurai($DB); + //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ + if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { + header('Location: ./../sel-sistema'); } + // }}} - $sistemas = $SAMURAI->getSistemas(); + $sistemas = SAMURAI_Sistema::getSistemas($DB); $TABLA2 = new Tabla ('cellspacing=0'); $row = array ($aHref.'Ingresar Nuevo Sistema'); @@ -74,11 +67,19 @@ $TABLA->addRow($row); } - + + //Agrego la opcion de seleccionar otro sistema para trabajar + $TABLA3 = new Tabla ('cellspacing=0'); + $row = array ('Seleccionar otro sistema para trabajar '); + $TABLA3->addRow($row,'align=right'); + + + //Agrego las cosas al cuerpo de la pagina $MARCO = new Marco ('../../conf/confSecciones.php'); $MARCO->addBody($TABLA2->toHtml(1)); $MARCO->addBody($TABLA); + $MARCO->addBody($TABLA3->toHtml(1)); $MARCO->display(); ?>