-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
57 lines (46 loc) · 1.18 KB
/
index.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
<?php
if(!file_exists('./classes/connection.php')){
header('location: install.php');
}
require_once('./header_root.php');
require_once('./classes/connection.php');
$conn = new Connection();
$nrtables = count($conn->tableNames());
$sel = 'Selecione uma Tabela';
?>
<br><br><br>
<style>
hr{
display:none;
}
</style>
<div class="container cabecalho">
<h1 align="center">Aplicativo com CRUDs Automáticos</h1>
</div>
<div align="center">
<?php
if($nrtables > 0){
print '<h3>'.$sel.'</h3>';
print '<h4><br>';
for($x=0;$x < $nrtables;$x++){
// Nome da tabela
$table = $conn->tableNames()[$x];
//if($table == 'pedidos') continue; //Descomentando esta linha podemos bypassar uma tabela
// Copiar pasta core para cada tabela
if(!file_exists($table)){
$conn->copyDir('core',$table);
}
?>
<!-- Link para cada tabela -->
<a href="<?=$conn->tableNames()[$x]?>?table=<?=$table?>"><?=ucfirst($table)?></a>
<?php
}// Final for
}else{
print "<h3>Nenhuma tabela foi encontrada no banco de dados!</h3>";
}
?>
</h4>
</div>
</div>
<br><br><br>
<?php require_once('./footer.php'); ?>