require_once 'MECON/HTML/Link.php';
require_once 'MECON/HTML/Arbol.php';
require_once 'HTML_DietMarco.php';
+require_once 'HTML_Mensaje.php';
-
-
-if(!isset($_SESSION['documento']))
-{
- header('Location: ../../servicios.php');
+if(!isset($_SESSION['documento'])) {
+ header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
+ exit;
}
$nrodoc = $_SESSION['documento'];
$agente = new MECON_Agente(NULL);
if(!($agente->buscarAgente($nrodoc)) or ($agente->buscarAgente($nrodoc) and preg_match('/^CON/',$agente->getTipo())))
{
- $t = new HTML_Table(array('width'=>'600','height'=>'200'));
- $t->addRow( array('InformaciĆ³n no disponible'),
- array('valign'=>'center', 'align'=>'center', 'class'=>'txt_naranja'));
- $row_T = array($t);
- $T->addRow($row_T,array('valign'=>'top','align'=>'left'));
+ $mensaje = new HTML_Mensaje('alerta', 'InformaciĆ³n no disponible', 300);
+ $m->addStyleSheet($mensaje->getCSS());
+
+ $T->addRow( array($mensaje),
+ array('valign'=>'middle','align'=>'center'));
$m->addBodyContent($T);
$m->display();
- die ();
+ exit;
}
$estudios = new Servicios_Legajos_Estudios($nrodoc);