source: admin/WebConsole/frames.php @ 1c793fc

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change on this file since 1c793fc was 3ec149c, checked in by alonso <alonso@…>, 15 years ago

git-svn-id: https://opengnsys.es/svn/trunk@1314 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 1.4 KB
Line 
1<?
2// *******************************************************************************************************
3// Aplicación WEB: ogAdmWebCon
4// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
5// Fecha Creación: Agosto-2010
6// Fecha Última modificación: Agosto-2010
7// Nombre del fichero: frames.php
8// Descripción :Este fichero implementa la distribución en frames de la aplicación
9// *******************************************************************************************************
10include_once("./includes/ctrlacc.php");
11include_once("./includes/constantes.php");
12//________________________________________________________________________________________________________
13?>
14<HTML>
15<HEAD>
16        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
17<TITLE> Administración web de aulas</TITLE>
18</HEAD>
19<FRAMESET rows="25,*">
20        <FRAME SRC="barramenu.php" frameborder=0  scrolling=no  NAME="frame_menus" >
21        <FRAMESET cols="30%,*">
22                        <?
23                        if($idtipousuario!=$SUPERADMINISTRADOR)
24                                echo '<FRAME SRC="./principal/aulas.php" frameborder=1 scrolling=auto NAME="frame_arbol" >';
25                        else{
26                                if($idtipousuario==$SUPERADMINISTRADOR)
27                                        echo '<FRAME SRC="./principal/administracion.php" frameborder=1 scrolling=auto NAME="frame_arbol" >';
28                        }
29                        ?>
30                <FRAME SRC="nada.php" frameborder=1  NAME="frame_contenidos">
31                </FRAMESET>
32        </FRAMESET>     
33</FRAMESET>
34</HTML>
Note: See TracBrowser for help on using the repository browser.