-
Notifications
You must be signed in to change notification settings - Fork 0
/
declaracao_palestrante.php
142 lines (117 loc) · 3.82 KB
/
declaracao_palestrante.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
#$nome = $_GET['nome'];
#$horas = $_GET['horas'];
$hash = $_GET["hash"];
include("conexao.php");
$query = mysqli_query($c, "SELECT * FROM ".$ano."_atividades WHERE hash='$hash'") or die(mysqli_error($c));
$resultSet = mysqli_fetch_array($query);
$encoding = mb_internal_encoding();
$palestrante = mb_strtoupper(utf8_encode($resultSet['palestrante']), $encoding);
$atividade = mb_strtoupper(utf8_encode($resultSet['atividade']), $encoding);
$id = $resultSet['id'];
$tipo = $resultSet['tipo'];
$singular_plural = $resultSet['singular_plural'];
$validador = $result = substr($hash, 0, 5);
if($tipo!="palestra" || $tipo!="oficina"){
$oq="realizou";
$tipo="apresentação cultural";
}else{
if($singular_plural=="singular" && $tipo == "palestra") $oq = "proferiu";
else if($singular_plural=="plural" && $tipo == "palestra") $oq = "proferiram";
else if($singular_plural=="singular" && $tipo == "oficina") $oq = "ministrou";
else if($singular_plural=="plural" && $tipo == "oficina") $oq = "ministraram";
}
if($id=="8"){$cargahoraria="2h30";}
else if($id=="14"){$cargahoraria="2h30";}
else if($id=="16"){$cargahoraria="2h00";}
else {$cargahoraria="1h30";}
$html = "<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=UTF8'>
<title>Certificado</title>
<style>
#certificado{
/*border: 1px solid black;*/
height: 100px;
position: absolute;
margin-top:200px;
}
#texto{
position:absolute;
font:Tahoma;
font-size: 20px;
}
#coordenacaoEsquerda{
/* border: 1px solid black;*/
height: 70px;
width: 280px;
position: absolute;
margin-top:390px;
margin-left:150px;
}
#coordenacaoDireita{
/*border: 1px solid black;*/
height: 70px;
width: 280px;
position: absolute;
margin-top:390px;
margin-left:510px;
}
#codigoValidacao{
/*border: 1px solid black;*/
height: 70px;
width: 800px;
position: absolute;
margin-top:640px;
margin-left:180px;
}
p{
font-size: 35px;
}
</style>
</head>
<body>
<div style= 'position:absolute;'>
<center>
<img src='modelo.png'>
</center>
</div>
<div id='certificado'>
<div id='texto'>
<center>
<h2>DECLARAÇÃO</h2>
<br>
Declaramos que <b>".$palestrante."</b>, $oq a <b>$tipo</b> intitulada <b>$atividade</b> na VIII Semana Acadêmica de Licenciatura em Informática (2021), realizada pela Universidade Tecnológica Federal do Paraná, Campus Francisco Beltrão, nos dias 04, 05, 06 e 07 de Agosto de 2021, com carga horária de $cargahoraria horas.
</center>
</div>
</div>
<div id='coordenacaoEsquerda'><br><br><br><br>
<center>
______________________________<br />
<b>Mayara Cristina Pereira Yamanoe</b><br />
Coordenadora do Curso de Licenciatura em Informática
</center>
</div>
<div id='coordenacaoDireita'><br><br><br><br>
<center>
______________________________<br />
<b>Wellton Costa de Oliveira</b><br />
Coordenador da VIII Semana Acadêmica de Licenciatura em Informática (2021)
</center>
</div>
<div id='codigoValidacao'><br><br><br>
Para verificar validade desta declaração, acesse https://salin.fb.utfpr.edu.br/vc/ e use o código: $validador
</div>
</body>
</html>
";
?>
<?php
require_once("./dompdf/dompdf_config.inc.php");
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper('letter', 'landscape');
$dompdf->render();
$dompdf->stream("$palestrante.pdf");
?>