]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/index.php
-Corrijo la forma de obtencion de la fecha de actualizacion de bandas
[mecon/intranet.git] / sistema / www / servicios / bandas / index.php
index 058e460af5a7dbdcb99a0b45b1d14212d5434148..5f032a647a808c3466e7016a3f7c13ec276548ae 100644 (file)
@@ -26,14 +26,13 @@ $Id: agenda1.php 64 2003-08-21 18:48:28Z mmarre $
 
 //REQUIRE ONCE {{{
 require_once 'HTML/Table.php';
-require_once '../../../local_lib/HTML_DietMarco.php';
-require_once '../../../local_lib/HTML_Mensaje.php';
+require_once 'HTML_DietMarco.php';
+require_once 'HTML_Mensaje.php';
 require_once 'BandasNovedades/Buscador.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once 'MECON/HTML/QuickForm.php';
 require_once 'MECON/HTML/Image.php';
 require_once 'MECON/Agente.php';
-require_once 'DB.php';
 //}}}
 
 //CHEQUEO QUE EL USUARIO YA ESTÉ LOGUEADO {{{
@@ -43,18 +42,12 @@ if(!isset($_SESSION['documento']))
 }
 //}}}
 
-//CREO LA CONEXION A LA BASE DE DATOS {{{
-$DB = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
-if (DB::isError($DB)) {
-    die ($DB->getMessage());
-}
-//}}}
 //{{{ INSTANCIO EL MARCO
 $MARCO =& new HTML_DietMarco('servicios','Bandas Horarias');
 //}}}
 
 //{{{ CHEQUEO SI EL USUARIO NO ES CONTRATADO O NO ESTA EN LAS BASES DE RRHH
-$agente =& new MECON_Agente($_SESSION['documento']);
+$agente =& new MECON_Agente($DB, $_SESSION['documento']);
 
 if(!$agente->buscarAgente($_SESSION['documento']))
 {
@@ -62,7 +55,7 @@ if(!$agente->buscarAgente($_SESSION['documento']))
        $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
        $MARCO->addBodyContent($HTML_Mensaje);
        $MARCO->display();
-       die;
+       exit;
 }
 
 /* Si el agente es un contratado entonces no muestro la info */
@@ -72,7 +65,7 @@ if(preg_match('/^CON/',$agente->getTipo()))
        $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
        $MARCO->addBodyContent($HTML_Mensaje);
        $MARCO->display();
-       die;
+       exit;
 }
 
 //}}}