git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_Intranet/trunk/src@1 e2b1556b-49f8-d141-9351-52d6861a72d9
22 lines
441 B
PHP
22 lines
441 B
PHP
<?php
|
|
|
|
include("seguridad.php");
|
|
include("functions.php");
|
|
include_once("html/cabecera.php");
|
|
include_once("Objects/HTML.php");
|
|
$html=new HTML($locale);
|
|
|
|
/* ADMINISTRACION_PRINCIPAL.PHP */
|
|
$rol = stripinput($_GET["rol"]);
|
|
|
|
echo "<h2>".$rol."</h2>";
|
|
|
|
/* ------------ PERFIL */
|
|
//echo "<table width=100%><tr>";
|
|
// menu_rol($rol);
|
|
//echo "</tr></table>";
|
|
$html->menuOpcion($usuario,$rol);
|
|
include_once("html/pie.php");
|
|
|
|
?>
|