This repository has been archived by the owner on Feb 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_disciplinas.php
49 lines (47 loc) · 2.06 KB
/
_disciplinas.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
require_once('ie.php');
require_once('config/loadConfig.php');
$objFL = new FuncionarioLogin();
$objFL->checaLogin('curso');
$tipo = $objFL->retornaFuncionarioSessao()->tipo;
$tipoUrl = $objFL->retornaFuncionarioSessao()->tipoUrl;
?>
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="/imagens/layout/estrutura/png/favicon.png" type="image/ico">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/imagens/layout/estrutura/png/favicon-57.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/imagens/layout/estrutura/png/favicon-72.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/imagens/layout/estrutura/png/favicon-114.png">
<link rel="stylesheet" type="text/css" href="/css/estrutura.css">
<link rel="stylesheet" type="text/css" href="/css/_forms.css">
<title><?php print "$objI->nomeFantasia - Disciplinas"; ?></title>
<script src="/js/jquery-1.9.1.min.js"></script>
</head>
<body>
<div id="all">
<header>
<?php require_once('header.php'); ?>
</header>
<article id="article">
<div class="enquadramento1000px">
<h1>Cursos - Área do <?php print $tipo; ?></h1>
<article class="boxList">
<h1>Disciplinas por Tipos de Curso</h1>
<ul id="boxButtons">
<li><a href="/<?php print $tipoUrl; ?>/disciplinas/graduacao/">Graduação</a></li>
<li><a href="/<?php print $tipoUrl; ?>/disciplinas/pos-graduacao/">Pós-graduação</a></li>
</ul>
<div class="clear"></div>
</article>
<a class="btnVoltar" href="/<?php print $tipoUrl; ?>/">Voltar</a>
</div>
</article>
<div class="clear"></div>
</div>
<footer>
<?php require_once('footer.php'); ?>
</footer>
</body>
</html>