git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_Intranet/trunk/src@1 e2b1556b-49f8-d141-9351-52d6861a72d9
23 lines
498 B
PHP
23 lines
498 B
PHP
<?php
|
|
include("seguridad.php");
|
|
include("functions.php");
|
|
include_once("Objects/Persona.php");
|
|
|
|
try{
|
|
$oid = $usuario->getValor("oid");
|
|
$persona=new Persona($oid);
|
|
}catch(Exception $e){
|
|
header("Location: aplicacion.php?e=permiso");
|
|
exit;
|
|
}
|
|
|
|
//Mostramos los detalles de un candidato
|
|
$mostrarDetalle = array();
|
|
array_push($mostrarDetalle,"personales");
|
|
include_once("html/cabecera.php");
|
|
|
|
include_once("detalles_usuario.php");
|
|
|
|
include_once("html/pie.php");
|
|
?>
|