X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/b49bcec7b53d0fef70585697308ba2473cd961e9..HEAD:/sistema/local_lib/prepend.php?ds=inline diff --git a/sistema/local_lib/prepend.php b/sistema/local_lib/prepend.php index 1c3f013..fd3706d 100644 --- a/sistema/local_lib/prepend.php +++ b/sistema/local_lib/prepend.php @@ -1,33 +1,45 @@ connect(); -require_once 'MECON/Usuario.php'; +if (PEAR::isError($DB)) { + $ERROR = new MECON_HTML_Error($DB->getMessage()); + echo $ERROR->toHtml(); + exit; +} -session_start(); //CARGO LAS VARIABLES DE SESION INTERNAS {{{ if (!isset($_SESSION['usuario'])) { - header('Location: /sistemas/intranet'); + header('Location: /sistemas/intranet/login?redirect='.$_SERVER['REQUEST_URI']); } if (isset($_GET['id_sistema'])) { $_SESSION['samurai']['id_sistema'] = $_GET['id_sistema']; } +elseif (($_SERVER['REQUEST_URI'] != "/sistemas/samurai/sel-sistema" && + $_SERVER['REQUEST_URI'] != + "/sistemas/samurai/sel-sistema?redirect=index")&& + !@$_SESSION['samurai']['id_sistema']) { + header('Location: /sistemas/samurai/sel-sistema?redirect=index'); +} +if (@$_SESSION['samurai']['id_sistema']) { + //Creo el objeto Permiso + $SAMURAI_PERM = new SAMURAI_Perm ($_SESSION['usuario'], + $_SESSION['samurai']['id_sistema'], $DB); +} //}}} -//Realizo la conexion con la base de datos -$tmp = new SAMURAI_DB(); -$DB =& $tmp->connect(); -//Creo el objeto Permiso -$SAMURAI_PERM = new SAMURAI_Perm ($_SESSION['usuario'], SAMURAI_ID, $DB); -//Creo el objeto Marco -$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); ?>