Incam_Intranet/src/aplicacion.php

26 lines
410 B
PHP
Raw Normal View History

<?php
include("seguridad.php");
include("functions.php");
include_once("html/cabecera.php");
/* APLICACION.PHP */
echo "<h2>".$locale['002']."</h2>";
if(!$usuario->tieneRol("7")) {
include("tablero.php");
}
else {
header("Location: lista_ofertas.php");
}
if($_SESSION["oid"]){
include_once("alarmas.php");
}
$usuario->compruebaChangePass();
include_once("html/pie.php");
?>