Incam_Intranet/detalle_usuario.php
2011-04-04 15:16:10 +00:00

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");
?>