-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpesquisa-bdpi-home.php
More file actions
57 lines (48 loc) · 1.62 KB
/
pesquisa-bdpi-home.php
File metadata and controls
57 lines (48 loc) · 1.62 KB
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
50
51
52
53
54
55
56
<?php
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
include('autentica-oauth1.php');
include('config.php');
if(isset($_SESSION['dadosusp']['nusp'])){
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title></title>
<link rel="stylesheet" href="inc/uikit-2.27.1/css/uikit.min.css" />
<link rel="stylesheet" href="inc/style.css" />
<script src="inc/jquery-3.1.1.min.js"></script>
<script src="inc/uikit-2.27.1/js/uikit.min.js"></script>
</head>
<body>
<?php include 'inc/header.inc' ?>
<h1>
Pesquisas BDPI-USP
</h1>
<h6>
<a href='http://www.producao.usp.br' target='_new'><i>Biblioteca Digital da Produção Intelectual - Universidade de São Paulo</i></a>
</h6>
<ul>
<li><a href="pesquisa-bdpi-anuario.php">BDPI - anuario</a></li>
<li><a href="pesquisa-bdpi-biomedc.php">BDPI - analise de duplicados da Biomed Central (itens recebidos via SWORD)</a></li>
</ul>
<br/>
<a href="autentica-oauth1.php?logout=pesquisa-inicio.php">sair</a>
<br/><br/><br/><br/><br/>
<h6>
Problemas? Envie um e-mail para <a href="mailto:atendimento@sibi.usp.br">atendimento@sibi.usp.br</a>.
</h6>
</body>
</html>
<?php
} else {
echo '<xmp>'."\n";
print_r($_SESSION);
echo "\n".'</xmp>'."\n";
//header('Location: autentica-oauth1.php?logout=pesquisa-inicio.php');
exit;
}