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'];
'cellpadding' => '0',
'bgcolor' => '#FFFFFF'));
-$agente = new MECON_Agente(NULL);
+$agente = new MECON_Agente($DB, 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);
$datos_experiencia = $antiguedad->getExperiencia();
$datos_familiares = $familiares->getFamiliares();
$datos_hijos = $familiares->getHijos();
- $dep = new MECON_Dependencia($agente->getDependencia());
+ $dep = new MECON_Dependencia($DB, $agente->getDependencia());
}
$arbol_valores = array();
$m->addStyleSheet('../../css/servicios_legajos.css');
$link_consultas =& new MECON_HTML_Link('mailto:legajos@mecon.gov.ar?subject=Consulta%20de%20legajos','Consultas');
-$link_declaracion =& new MECON_HTML_Link('#','Declaración jurada');
+$link_declaracion =& new MECON_HTML_Link('../estatico/normas/legajo','Declaración jurada');
$T->addRow(array($link_consultas,$link_declaracion),array('class'=>'titulo_vinculos_derecha'));
$T->updateCellAttributes(0,0,array('class'=>'titulo_vinculos_izquierda'));
$T->addRow(array('',''));