|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/logicswapweb/aplicaciones/admon/ |
Upload File : |
<?php
include('./fnc/DBConnect.php');
include('./fnc/componente.php');
include('./fnc/parametro.php');
include('./fnc/vinculo.php');
include('./fnc/UsuarioPanel.php');
include('./fnc/aplicacion.php');
include('./fnc/bitacora.php');
include('./fnc/panel.php');
session_start('PanelAzulDigial');
if(!isset($_SESSION['panel'])){
echo "<div style=\" font-family: Verdana, Arial, Helvetica, sans-serif; color: #0066CC; font-size: 16px;font-weight: bolder;\">Usuario Invalido</div>";
}else{
$panel->aplicativo=new Aplicacion();
$panel->reactivarDB();
$panel->setFilesPanel(3);
$tipo_u=$panel->usuario->tipo;
$user_u=$panel->usuario->id;
$estado_u=$panel->usuario->estado;
?>
<html>
<head>
<title>Control Panel</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
-->
</style>
<link href="css/panel2.css" rel="stylesheet" type="text/css">
<link href="css/panel2Contenido.css" rel="stylesheet" type="text/css">
<link href="css/scrollbar.css" rel="stylesheet" type="text/css">
<link href="css/scrollbar2.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0">
<table width="150" height="439" border="0" align="left" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" background="img/fondo_i.gif" bgcolor="#F2F2F2">
<tr>
<td height="439" valign="top"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="7" height="224"> </td>
<td width="143" valign="top"><table width="143" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="9"> </td>
<td align="center">
<? if ($tipo_u==1 || $tipo_u==2){?>
<table width="122" border="0" cellspacing="1" cellpadding="0">
<tr>
<td><a href="usuarios/index.php" target="contenido">
<div align="center" class="menu2">Users</div>
</a></td>
</tr>
</table>
<table width="122" border="0" cellspacing="1" cellpadding="0">
<tr>
<td><a href="aplicaciones/index.php" target="contenido">
<div align="center" class="menu2">Applications</div>
</a></td>
</tr>
</table>
<table width="122" border="0" cellspacing="1" cellpadding="0">
<tr>
<td><a href="valores_config/index.php" target="contenido">
<div align="center" class="menu2">Parameters</div>
</a></td>
</tr>
</table>
<? }?>
<table width="122" border="0" cellspacing="1" cellpadding="0">
<tr>
<td><a href="micuenta/index.php" target="contenido">
<div align="center" class="menu2">My Account</div>
</a></td>
</tr>
</table> </td>
<td width="9"> </td>
</tr>
</table>
<table width="143" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="21"> </td>
<td> </td>
<td width="23"> </td>
</tr>
</table>
<table width="143" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><span class="texto1">Applications</span>:</td>
</tr>
</table>
<table width="143" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="9"> </td>
<td align="center">
<?php
if($panel->existAplicaciones()){
$panel->cargarLateral($tipo_u,$user_u,$estado_u);
}else{
$ms=$panel->salida['msg'];
echo "<div class=\"menu2\">$ms</div>";
}
?> </td>
<td width="9"> </td>
</tr>
</table>
<table width="143" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="21"> </td>
<td> </td>
<td width="23"> </td>
</tr>
</table>
</td>
</tr>
</table>
<table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
<? }?>