Incam_Intranet/detalle_usuario.php

23 lines
498 B
PHP
Raw Permalink Normal View History

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