<?
-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 'HTML/Table.php';
require_once 'MECON/HTML/Image.php';
require_once 'MECON/HTML/Link.php';
if(!isset($_SESSION['documento']) or !isset($_POST['fecha']))
{
- header('Location: ../../servicios.php');
-}
-
-//CREO LA CONEXION A LA BASE DE DATOS
-$dbh = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
-if (DB::isError($dbh)) {
- die ($DB->getMessage());
+ header('Location: ../../servicios/');
}
//Seteo las variables generales
//$m->addTitle('Bandas Horarias');
$m->addStyleSheet('../../css/servicios_bandas.css');
-$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$dbh);
+$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$DB);
if(!$agente->buscarAgente($nrodoc))
{
$m->addStyleSheet($HTML_Mensaje->getCSS());
$m->addBodyContent($HTML_Mensaje);
$m->display();
- die;
+ exit;
}
$m->addStyleSheet($HTML_Mensaje->getCSS());
$m->addBodyContent($HTML_Mensaje);
$m->display();
- die;
+ exit;
}
/* Agrego las tablas de referencia al cuerpo */
$row = array();
-if(BandasNovedades_AgenteBanda::tieneCredencial($dbh,$_SESSION['documento'],new Date($fecha)))
+if(BandasNovedades_AgenteBanda::tieneCredencial($DB,$_SESSION['documento'],new Date($fecha)))
{
/* Armo la tabla con la gilla horaria*/
$tabla_info =& new BandasNovedades_HTML_TablaInfoMes($agente,'nov_dia.php','oscuro');
{
$sql = "Select fecha from FechaActualizacion where tipoActualizacion='DIARIO'
order by fecha desc limit 1";
- $result = $dbh->query($sql);
+ $result = $DB->query($sql);
if (DB::isError($result))
- die ($result->getMessage("Query mal hecho"));
+ trigger_error($result->getMessage("Query mal hecho"), E_USER_ERROR);
$FECHA_ACTUALIZACION=$result->fetchRow(DB_FETCHMODE_ASSOC);